From 989e9d4d94ccef70836043ba7dde809e75988d82 Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 29 Dec 2001 19:00:13 +0000 Subject: [PATCH] Newline can terminate escaped names. --- lexor.lex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lexor.lex b/lexor.lex index 21932d807..9984bc5e2 100644 --- a/lexor.lex +++ b/lexor.lex @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: lexor.lex,v 1.67 2001/12/03 04:47:15 steve Exp $" +#ident "$Id: lexor.lex,v 1.68 2001/12/29 19:00:13 steve Exp $" #endif # include "config.h" @@ -193,7 +193,7 @@ W [ \t\b\f\r]+ } -\\[^ \t\b\f\r]+ { +\\[^ \t\b\f\r\n]+ { yylval.text = strdup(yytext+1); return IDENTIFIER; }