# HG changeset patch # User John W. Eaton # Date 1377722103 14400 # Node ID 6470a113eae21563bd626e260257978f84cd0e4b # Parent 091e4df179de26eebea846d52914af051141fae7 correctly handle deprecated \ continuation markers * lex.ll (\\{S}*{NL} | \\{S}*{CCHAR}.*{NL}): Call curr_lexer->handle_continuation. diff -r 091e4df179de -r 6470a113eae2 libinterp/parse-tree/lex.ll --- a/libinterp/parse-tree/lex.ll Wed Aug 28 14:46:02 2013 -0400 +++ b/libinterp/parse-tree/lex.ll Wed Aug 28 16:35:03 2013 -0400 @@ -987,6 +987,8 @@ warning_with_id ("Octave:deprecated-syntax", "%s; near line %d of file '%s'", msg, curr_lexer->input_line_number, nm.c_str ()); + + curr_lexer->handle_continuation (); } %{