1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

* 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.
This commit is contained in:
Marius Vollmer 2001-07-25 15:32:30 +00:00
parent ee0c7345a9
commit 2b1d120cd7

View file

@ -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);
}