mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-12 15:37:35 +02:00
adding an extra newline when interrupting from the repl
This commit is contained in:
parent
275bf31b13
commit
dccc398621
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@
|
||||||
(with-signal-handler
|
(with-signal-handler
|
||||||
signal/interrupt
|
signal/interrupt
|
||||||
(lambda (n)
|
(lambda (n)
|
||||||
(display "Interrupt\n" (current-error-port))
|
(display "\nInterrupt\n" (current-error-port))
|
||||||
(thread-terminate! thread))
|
(thread-terminate! thread))
|
||||||
(lambda () (thread-join! (thread-start! thread))))))
|
(lambda () (thread-join! (thread-start! thread))))))
|
||||||
;; Loop whether there were errors or interrupts or not.
|
;; Loop whether there were errors or interrupts or not.
|
||||||
|
|
Loading…
Add table
Reference in a new issue