diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-09-06 22:26:31 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-09-06 22:26:31 -0700 |
commit | e131e81e72f37d29bd237d0052bb9f6febd7ffd0 (patch) | |
tree | 377e3e545eb115d9a188d9971df1674aa1159c64 /txr.c | |
parent | 2a99dce03f1e4c0662e945280ed0dc4c919272df (diff) | |
download | txr-e131e81e72f37d29bd237d0052bb9f6febd7ffd0.tar.gz txr-e131e81e72f37d29bd237d0052bb9f6febd7ffd0.tar.bz2 txr-e131e81e72f37d29bd237d0052bb9f6febd7ffd0.zip |
txr -i honored despite parse-time exception.
If an error is thrown while parsing a .txr file
or while reading and evaluating the forms of a .tl
file.
* parser.y (parse_once, parse): Wording change in message when
exception is caught. Only exceptions derived from error are
caught.
* txr.c (parse_once_noerr, read_eval_stream_noerr): New static
functions.
(txr_main): Use parse_once_noerr and read_eval_stream_noerr
instead of parse_once and read_eval_stream.
Don't exit if a TXR file has parser errors; in that situation,
exit only if interactive mode is not requested, otherwise
go interactive. Make sure *self-path* is registered to the
name of the input source in this case also.
* unwind.h (ignerr_func_body): New macro.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 32 |
1 files changed, 25 insertions, 7 deletions
@@ -447,6 +447,20 @@ static void no_dbg_support(val arg) } #endif +static int parse_once_noerr(val stream, val name, parser_t *parser) +{ + val pfx = format(nil, lit("~a:"), name, nao); + ignerr_func_body(int, 0, parse_once(stream, name, parser), + exsym, exargs, std_error, pfx); +} + +static val read_eval_stream_noerr(val stream, val name, val error_stream) +{ + val pfx = format(nil, lit("~a:"), name, nao); + ignerr_func_body(val, nil, read_eval_stream(stream, error_stream), + exsym, exargs, std_error, pfx); +} + int txr_main(int argc, char **argv) { uses_or2; @@ -974,27 +988,30 @@ int txr_main(int argc, char **argv) { int gc = gc_state(0); parser_t parser; - parse_once(parse_stream, spec_file_str, &parser); + parse_once_noerr(parse_stream, spec_file_str, &parser); gc_state(gc); close_stream(parse_stream, nil); uw_release_deferred_warnings(); - if (parser.errors) - return EXIT_FAILURE; - spec = parser.syntax_tree; opt_loglevel = match_loglevel; + reg_var(intern(lit("*self-path*"), user_package), spec_file_str); + + if (parser.errors) { + if (enter_repl) + goto repl; + return EXIT_FAILURE; + } + if (opt_loglevel >= 2) { format(std_error, lit("spec:\n~s\n"), spec, nao); format(std_error, lit("bindings:\n~s\n"), bindings, nao); } - reg_var(intern(lit("*self-path*"), user_package), spec_file_str); - { val result = extract(spec, arg_list, bindings); cons_bind (new_bindings, success, result); @@ -1014,7 +1031,8 @@ int txr_main(int argc, char **argv) } { - val result = read_eval_stream(parse_stream, std_error); + val result = read_eval_stream_noerr(parse_stream, spec_file_str, + std_error); close_stream(parse_stream, nil); |