1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 22:31:12 +02:00

remove type' and value' fields from <ghil-var>

* module/system/il/ghil.scm (<ghil-var>): Remove `type' and `value'
  fields, as they were not used.
This commit is contained in:
Andy Wingo 2008-09-29 22:52:36 +02:00
parent dc68fdb961
commit 48d0006409

View file

@ -85,8 +85,7 @@
ghil-values*-env ghil-values*-loc ghil-values*-values
<ghil-var> make-ghil-var ghil-var?
ghil-var-env ghil-var-name ghil-var-kind ghil-var-type ghil-var-value
ghil-var-index
ghil-var-env ghil-var-name ghil-var-kind ghil-var-index
<ghil-toplevel-env> make-ghil-toplevel-env ghil-toplevel-env?
ghil-toplevel-env-table
@ -134,7 +133,7 @@
;;; Variables
;;;
(define-record (<ghil-var> env name kind (type #f) (value #f) (index #f)))
(define-record (<ghil-var> env name kind (index #f)))
;;;