From 0607ebbfcf63dc81e4bc2b10f3a8c3bc0d348c09 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 8 Nov 2011 00:36:48 +0100 Subject: locking for putc, puts * libguile/ports.c (scm_putc, scm_puts): * libguile/ports.h (scm_putc_unlocked, scm_puts_unlocked): Separate into _unlocked and locked variants. Change all callers to use the _unlocked versions. --- libguile/eval.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libguile/eval.c') diff --git a/libguile/eval.c b/libguile/eval.c index f73710afc..ad0a84a58 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -913,16 +913,16 @@ static int boot_closure_print (SCM closure, SCM port, scm_print_state *pstate) { SCM args; - scm_puts ("#', port); + scm_putc_unlocked ('>', port); return 1; } -- cgit v1.2.3