comparison src/lex.h @ 4037:7e0c73f17a5d

[project @ 2002-08-13 02:02:26 by jwe]
author jwe
date Tue, 13 Aug 2002 02:02:26 +0000
parents 69b6bd271277
children 6b96ce9f5743
comparison
equal deleted inserted replaced
4036:1432e11733d1 4037:7e0c73f17a5d
80 lexer_flags.convert_spaces_to_comma = convert; \ 80 lexer_flags.convert_spaces_to_comma = convert; \
81 return (tok); \ 81 return (tok); \
82 } \ 82 } \
83 while (0) 83 while (0)
84 84
85 #define XBIN_OP_RETURN(tok, convert) \
86 do \
87 { \
88 gripe_matlab_incompatible_operator (yytext); \
89 BIN_OP_RETURN (tok, convert); \
90 } \
91 while (0)
92
85 // XXX FIXME XXX -- these input buffer things should be members of an 93 // XXX FIXME XXX -- these input buffer things should be members of an
86 // parser input stream class. 94 // parser input stream class.
87 95
88 typedef struct yy_buffer_state *YY_BUFFER_STATE; 96 typedef struct yy_buffer_state *YY_BUFFER_STATE;
89 97