summaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-17 21:19:18 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-17 21:19:18 -0700
commit7959a22f6f5434dcbc505c1a8f7b560c5b621077 (patch)
tree60322ffc95cc7518975b4ca309860f1999aae3e5 /parser.c
parentbaef58bfde173aff6898030e46aeafe39b18c813 (diff)
downloadtxr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser.c b/parser.c
index ec263122..ddc0d22d 100644
--- a/parser.c
+++ b/parser.c
@@ -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 {