comparison src/lex.l @ 5349:e965ab89f832

[project @ 2005-05-11 17:46:25 by jwe]
author jwe
date Wed, 11 May 2005 17:47:47 +0000
parents 2781568bf951
children 17e40a1331b0
comparison
equal deleted inserted replaced
5348:b3ba123faec8 5349:e965ab89f832
2293 2293
2294 int c1 = yyinput (); 2294 int c1 = yyinput ();
2295 2295
2296 bool next_tok_is_paren = (c1 == '('); 2296 bool next_tok_is_paren = (c1 == '(');
2297 2297
2298 bool next_tok_is_struct_ref = (c1 == '.');
2299
2300 bool next_tok_is_eq = false; 2298 bool next_tok_is_eq = false;
2301 if (c1 == '=') 2299 if (c1 == '=')
2302 { 2300 {
2303 int c2 = yyinput (); 2301 int c2 = yyinput ();
2304 yyunput (c2, yytext); 2302 yyunput (c2, yytext);