summaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-06 09:03:49 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-06 09:03:49 -0700
commitdb8b34eea88e1b634073b120acede13b1e19a8d8 (patch)
tree58922799e04ac95cf9ffcbae56c05247b63af5fd /parser.c
parent3b2c323f98ff0c032565d288032b59e1a6c93502 (diff)
downloadtxr-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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/parser.c b/parser.c
index d39d1fb6..e7dab1ca 100644
--- a/parser.c
+++ b/parser.c
@@ -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);