From dccc3986216a129e1221fb720fc78ca3223e486b Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sat, 21 Jul 2012 17:32:03 +0900 Subject: [PATCH] adding an extra newline when interrupting from the repl --- lib/chibi/repl.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chibi/repl.scm b/lib/chibi/repl.scm index 3ee689da..86d87d13 100644 --- a/lib/chibi/repl.scm +++ b/lib/chibi/repl.scm @@ -269,7 +269,7 @@ (with-signal-handler signal/interrupt (lambda (n) - (display "Interrupt\n" (current-error-port)) + (display "\nInterrupt\n" (current-error-port)) (thread-terminate! thread)) (lambda () (thread-join! (thread-start! thread)))))) ;; Loop whether there were errors or interrupts or not.