summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-06 08:56:50 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-06 08:56:50 -0700
commit05c23e031c7e949fd154602945d0f150cbb14c73 (patch)
tree4890bfd20044c0965bb6623306b1455284ded690 /parser.l
parent8b3eb12947305ad3636227b7bfe6132f39b1028f (diff)
downloadtxr-05c23e031c7e949fd154602945d0f150cbb14c73.tar.gz
txr-05c23e031c7e949fd154602945d0f150cbb14c73.tar.bz2
txr-05c23e031c7e949fd154602945d0f150cbb14c73.zip
Parse errors lose program prefix and parens.
* parser.l (yyerrorf): Don't print the program prefix and parenthes, except if compatibility to 114 or older is requested. The main motivation for this is the repl, where the program prefix is not informative. The new format is also a de facto standard which is compatible with other parsers. Vim understands it directly. * txr.1: Documented.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l9
1 files changed, 7 insertions, 2 deletions
diff --git a/parser.l b/parser.l
index 6d6fca08..087a3db4 100644
--- a/parser.l
+++ b/parser.l
@@ -108,8 +108,13 @@ void yyerrorf(scanner_t *scanner, val fmt, ...)
if (opt_loglevel >= 1) {
va_list vl;
va_start (vl, fmt);
- format(std_error, lit("~a: (~a:~a): "), prog_string,
- parser->name, num(parser->lineno), nao);
+ if (opt_compat && opt_compat <= 114)
+ format(std_error, lit("~a: (~a:~a): "), prog_string,
+ parser->name, num(parser->lineno), nao);
+ else
+ format(std_error, lit("~a:~a: "),
+ parser->name, num(parser->lineno), nao);
+
vformat(std_error, fmt, vl);
put_char(chr('\n'), std_error);
va_end (vl);