mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +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:
parent
ee0c7345a9
commit
2b1d120cd7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue