From 1572c93478c55ff14738a4b6f1b38dc41878a816 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 2 Sep 2014 19:46:18 -0700 Subject: * eval.c (eval_init): Update registration of lisp-parse and read to account for new parameter. * lib.c (syntax_error_s): New symbol_variable. (obj_init): New symbol variable initialized. * lib.h (syntax_error_s): Declared. * parser.h (lisp_parse): Declaration updated. * parser.l (lisp_parse): Takes third parameter. * txr.1: Third parameter of read described. * txr.c (txr_main): Pass colon_k to third parameter of lisp_parse to obtain exception throwing behavior. * unwind.c (uw_init): Register syntax-error as subtype of error. --- parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 11801e5e..305b8d7b 100644 --- a/parser.h +++ b/parser.h @@ -59,4 +59,4 @@ INLINE val rlcp(val to, val from) } val rlcp_tree(val to, val from); val regex_parse(val string, val error_stream); -val lisp_parse(val source, val error_stream); +val lisp_parse(val source, val error_stream, val error_return_val); -- cgit v1.2.3