diff options
author | Andy Wingo <wingo@pobox.com> | 2008-09-29 22:52:36 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2008-09-29 22:52:36 +0200 |
commit | 48d0006409dc7d882ba47620d80f99f412f8fff1 (patch) | |
tree | a27cef32eb3837f0beb9b43811f11446512dd4cc | |
parent | dc68fdb961f1116c67c797ca07889ae21de40492 (diff) | |
download | guile-48d0006409dc7d882ba47620d80f99f412f8fff1.tar.gz |
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.
-rw-r--r-- | module/system/il/ghil.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/system/il/ghil.scm b/module/system/il/ghil.scm index 92abfc343..5d6e67a3f 100644 --- a/module/system/il/ghil.scm +++ b/module/system/il/ghil.scm @@ -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))) ;;; |