# 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 --git a/libinterp/parse-tree/lex.ll b/libinterp/parse-tree/lex.ll --- a/libinterp/parse-tree/lex.ll +++ b/libinterp/parse-tree/lex.ll @@ -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 (); } %{