summaryrefslogtreecommitdiff
path: root/libguile/variable.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-07-25 15:32:30 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-07-25 15:32:30 +0000
commit2b1d120cd73bd32a9976c60daffa8d1a75d4f3bb (patch)
treedb338209e93db1e13551ff7f745e50757449a6fe /libguile/variable.c
parentee0c7345a98b45f7454a323271fe429ab1162d04 (diff)
downloadguile-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.
Diffstat (limited to 'libguile/variable.c')
-rw-r--r--libguile/variable.c2
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);
}