diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-12-04 19:45:55 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-12-04 19:45:55 -0800 |
commit | c4f8c01944f19ec0f28610af4589be242afe7a17 (patch) | |
tree | 87eeb03a1b90d66e61bf5fbd823e577b582251a4 | |
parent | da08a3c9d4162703d1aeb3475a77777903887805 (diff) | |
download | txr-c4f8c01944f19ec0f28610af4589be242afe7a17.tar.gz txr-c4f8c01944f19ec0f28610af4589be242afe7a17.tar.bz2 txr-c4f8c01944f19ec0f28610af4589be242afe7a17.zip |
Removes stray debug printf from lexer.
* parser.l: A stray printf was committed in November 2015.
The spurious output only occurs when certain invalid
floating-point syntax is encountered.
-rw-r--r-- | parser.l | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -381,7 +381,6 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} <SPECIAL,QSPECIAL>{TOK}/{DOTFLO} | <BRACED>{BTOK}/{DOTFLO} | <NESTED>{NTOK}/{DOTFLO} { - printf("yytext: %s\n", yytext); yyerrorf(yyg, lit("cramped floating-point literal: " "space needed between ~a and dot."), string_own(utf8_dup_from(yytext)), |