diff libinterp/parse-tree/lex.ll @ 18458:ebb878596bcf gui-release

Restore escaped backslashes accidentally deleted by cset af8a70d6885c * lex.ll (<COMMAND_START>([\.]|[^#% \t\r\n\.\,\;\"\'\(\[\{\}\]\)]*)): Restore escaped backslash characters in debug text.
author Mike Miller <mtmiller@ieee.org>
date Thu, 13 Feb 2014 12:15:14 -0500
parents 888cd8f62c67
children b2a2f097c5e0 3cac3d7f003f
line wrap: on
line diff
--- a/libinterp/parse-tree/lex.ll	Thu Feb 13 12:05:47 2014 -0500
+++ b/libinterp/parse-tree/lex.ll	Thu Feb 13 12:15:14 2014 -0500
@@ -424,7 +424,7 @@
 %}
 
 <COMMAND_START>([\.]|[^#% \t\r\n\.\,\;\"\'\(\[\{\}\]\)]*) {
-    curr_lexer->lexer_debug ("<COMMAND_START>([\.]|[^#% \\t\\r\n\\.\\,\\;\\\"\\'\\(\\[\\{\\}\\]\\)]*");
+    curr_lexer->lexer_debug ("<COMMAND_START>([\\.]|[^#% \\t\\r\\n\\.\\,\\;\\\"\\'\\(\\[\\{\\}\\]\\)]*");
 
     curr_lexer->string_text += yytext;
     curr_lexer->current_input_column += yyleng;