diff options
Diffstat (limited to 'libguile/variable.c')
-rw-r--r-- | libguile/variable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/variable.c b/libguile/variable.c index 41f9c4df5..b377b4140 100644 --- a/libguile/variable.c +++ b/libguile/variable.c @@ -36,9 +36,9 @@ void scm_i_variable_print (SCM exp, SCM port, scm_print_state *pstate) { - scm_puts_unlocked ("#<variable ", port); + scm_puts ("#<variable ", port); scm_uintprint (SCM_UNPACK (exp), 16, port); - scm_puts_unlocked (" value: ", port); + scm_puts (" value: ", port); scm_iprin1 (SCM_VARIABLE_REF (exp), port, pstate); scm_putc ('>', port); } |