summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-06 18:35:48 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-06 18:35:48 -0700
commitc2e0ec801502ae26dae3dfdd035ff10436cffedd (patch)
treec27e5fd60688f16939d98d331fa4bbe0d2a0303a /eval.c
parent59aa1488ac6deec474dc5287d4866223e1bcd005 (diff)
downloadtxr-c2e0ec801502ae26dae3dfdd035ff10436cffedd.tar.gz
txr-c2e0ec801502ae26dae3dfdd035ff10436cffedd.tar.bz2
txr-c2e0ec801502ae26dae3dfdd035ff10436cffedd.zip
Allow evaluation from repl to be interrupted.
* eval.c (do_eval): Check for pending signals. * parser.c (repl_intr): New static function. (repl): Set up signal handler for SIGINT around REPL. * signal.h (sig_deferred): declared. (sig_check_fast): New inline function/macro. A bit of a rearrangement here.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 2afc431c..a31a9bce 100644
--- a/eval.c
+++ b/eval.c
@@ -955,6 +955,7 @@ static val do_eval(val form, val env, val ctx_form,
debug_enter;
debug_check(consp(form) ? form : ctx_form, env, nil, nil, nil, nil);
+ sig_check_fast();
if (nilp(form)) {
debug_return (nil);