comparison src/lex.l @ 4198:af1d77a5e44d

[project @ 2002-11-21 20:03:31 by jwe]
author jwe
date Thu, 21 Nov 2002 20:03:31 +0000
parents bf9c5ca4c3f3
children e96f52432059
comparison
equal deleted inserted replaced
4197:40f76ce7a051 4198:af1d77a5e44d
265 <TEXT_FCN>[\"\'] { 265 <TEXT_FCN>[\"\'] {
266 current_input_column++; 266 current_input_column++;
267 return handle_string (yytext[0], true); 267 return handle_string (yytext[0], true);
268 } 268 }
269 269
270 <TEXT_FCN>[^ \t\n\;\,\"\'][^ \t\n\;\,]*{S}* { 270 <TEXT_FCN>[^#% \t\n\;\,\"\'][^ \t\n\;\,]*{S}* {
271 std::string tok = strip_trailing_whitespace (yytext); 271 std::string tok = strip_trailing_whitespace (yytext);
272 TOK_PUSH_AND_RETURN (tok, STRING); 272 TOK_PUSH_AND_RETURN (tok, STRING);
273 } 273 }
274 274
275 %{ 275 %{