# HG changeset patch # User Mike Miller # Date 1392311714 18000 # Node ID ebb878596bcf47019dc9034833fae0f0fb65551b # Parent 9fbea0c395ec88a9a66b6328ef1cd45ff0e3cf27 Restore escaped backslashes accidentally deleted by cset af8a70d6885c * lex.ll (([\.]|[^#% \t\r\n\.\,\;\"\'\(\[\{\}\]\)]*)): Restore escaped backslash characters in debug text. diff -r 9fbea0c395ec -r ebb878596bcf libinterp/parse-tree/lex.ll --- 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 @@ %} ([\.]|[^#% \t\r\n\.\,\;\"\'\(\[\{\}\]\)]*) { - curr_lexer->lexer_debug ("([\.]|[^#% \\t\\r\n\\.\\,\\;\\\"\\'\\(\\[\\{\\}\\]\\)]*"); + curr_lexer->lexer_debug ("([\\.]|[^#% \\t\\r\\n\\.\\,\\;\\\"\\'\\(\\[\\{\\}\\]\\)]*"); curr_lexer->string_text += yytext; curr_lexer->current_input_column += yyleng;