diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-06 09:03:49 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-06 09:03:49 -0700 |
commit | db8b34eea88e1b634073b120acede13b1e19a8d8 (patch) | |
tree | 58922799e04ac95cf9ffcbae56c05247b63af5fd /parser.c | |
parent | 3b2c323f98ff0c032565d288032b59e1a6c93502 (diff) | |
download | txr-db8b34eea88e1b634073b120acede13b1e19a8d8.tar.gz txr-db8b34eea88e1b634073b120acede13b1e19a8d8.tar.bz2 txr-db8b34eea88e1b634073b120acede13b1e19a8d8.zip |
repl suppresses syntax error exceptions
* parser.c (repl): If an expression is caught of
type syntax-error, then just suppress it. It is not
informative in this situation because the syntax
error diagnostics have appeared on the tty.
A syntax error exceptions is thrown out of the
reader so that program logic doesn't ignore errors.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -535,7 +535,9 @@ val repl(val bindings, val in_stream, val out_stream) } uw_catch (exsym, exvals) { - if (uw_exception_subtype_p(exsym, error_s)) { + if (uw_exception_subtype_p(exsym, syntax_error_s)) { + /* suppress syntax error exceptions: uninformative in the repl */ + } else if (uw_exception_subtype_p(exsym, error_s)) { obj_pprint(car(exvals), out_stream); if (cdr(exvals)) { put_string(lit(" "), out_stream); |