diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-07-25 15:32:30 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-07-25 15:32:30 +0000 |
commit | 2b1d120cd73bd32a9976c60daffa8d1a75d4f3bb (patch) | |
tree | db338209e93db1e13551ff7f745e50757449a6fe | |
parent | ee0c7345a98b45f7454a323271fe429ab1162d04 (diff) | |
download | guile-2b1d120cd73bd32a9976c60daffa8d1a75d4f3bb.tar.gz |
* variable.c (scm_i_variable_print): Use "value" instead of
"binding" since a binding is the mapping between symbols and
variables, not between variables and their values.
-rw-r--r-- | libguile/variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/variable.c b/libguile/variable.c index 9f542eda0..7ced1e9dd 100644 --- a/libguile/variable.c +++ b/libguile/variable.c @@ -58,7 +58,7 @@ scm_i_variable_print (SCM exp, SCM port, scm_print_state *pstate) { scm_puts ("#<variable ", port); scm_intprint (SCM_UNPACK (exp), 16, port); - scm_puts (" binding: ", port); + scm_puts (" value: ", port); scm_iprin1 (SCM_VARIABLE_REF (exp), port, pstate); scm_putc('>', port); } |