comparison src/lex.l @ 3698:22c94c038d48

[project @ 2000-07-18 04:27:07 by jwe]
author jwe
date Tue, 18 Jul 2000 04:27:07 +0000
parents 0689afb1d001
children de61a7ba91f2
comparison
equal deleted inserted replaced
3697:8ce0d75eb4e3 3698:22c94c038d48
1403 else 1403 else
1404 bin_op = looks_like_bin_op (spc_prev, c2); 1404 bin_op = looks_like_bin_op (spc_prev, c2);
1405 1405
1406 unput (c2); 1406 unput (c2);
1407 } 1407 }
1408 else if (! isdigit (c1) && c1 != ' ' && c1 != '\t') 1408 else if (! isdigit (c1) && c1 != ' ' && c1 != '\t' && c1 != '.')
1409 { 1409 {
1410 bin_op = true; 1410 bin_op = true;
1411 } 1411 }
1412 1412
1413 unput (c1); 1413 unput (c1);