diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 21:19:18 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 21:19:18 -0700 |
commit | 7959a22f6f5434dcbc505c1a8f7b560c5b621077 (patch) | |
tree | 60322ffc95cc7518975b4ca309860f1999aae3e5 /parser.c | |
parent | baef58bfde173aff6898030e46aeafe39b18c813 (diff) | |
download | txr-7959a22f6f5434dcbc505c1a8f7b560c5b621077.tar.gz txr-7959a22f6f5434dcbc505c1a8f7b560c5b621077.tar.bz2 txr-7959a22f6f5434dcbc505c1a8f7b560c5b621077.zip |
Change how error locations are reported in REPL.
Now that we have a multi-line mode, it no longer works that we
use the command line number as the parse line number, so that
an error from something that was parsed in command 42 comes
out as "line:42". This commit changes to the format
"expr-42:3": line 3 of expression 42. The expression number is
fixed in the parse name, and the line number is derived from
the line divisions in the entry itself.
* parser.c (repl): Dynamically compute the parse name,
such that it contains the command number. Then when parsing,
just leave the parse to begin at line 1.
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -646,9 +646,9 @@ val repl(val bindings, val in_stream, val out_stream) uw_catch_begin (catch_all, exsym, exvals); { + val name = format(nil, lit("expr-~a"), prev_counter); val line = string_utf8(line_u8); - val form = lisp_parse(line, out_stream, colon_k, - lit("line"), prev_counter); + val form = lisp_parse(line, out_stream, colon_k, name, colon_k); if (form == quit_k) { done = t; } else { |