Lex-related fixes.
* mu-aux/gylwrap (@yysym): Add more symbols from lex. * mh/mh_alias_lex.l (mh_alias_read): Return meaningful value.
Showing
2 changed files
with
20 additions
and
0 deletions
... | @@ -291,6 +291,7 @@ mh_alias_read (char const *name, int fail) | ... | @@ -291,6 +291,7 @@ mh_alias_read (char const *name, int fail) |
291 | rc = yyparse (); | 291 | rc = yyparse (); |
292 | mu_stream_ioctl (mu_strerr, MU_IOCTL_LOGSTREAM, | 292 | mu_stream_ioctl (mu_strerr, MU_IOCTL_LOGSTREAM, |
293 | MU_IOCTL_LOGSTREAM_SET_MODE, &old_mode); | 293 | MU_IOCTL_LOGSTREAM_SET_MODE, &old_mode); |
294 | return rc; | ||
294 | } | 295 | } |
295 | 296 | ||
296 | void | 297 | void | ... | ... |
... | @@ -203,6 +203,25 @@ my @yysym = qw( | ... | @@ -203,6 +203,25 @@ my @yysym = qw( |
203 | yycheck | 203 | yycheck |
204 | yyname | 204 | yyname |
205 | yyrule | 205 | yyrule |
206 | |||
207 | yy_create_buffer | ||
208 | yy_delete_buffer | ||
209 | yy_flex_debug | ||
210 | yy_init_buffer | ||
211 | yy_flush_buffer | ||
212 | yy_load_buffer_state | ||
213 | yy_switch_to_buffer | ||
214 | yyin | ||
215 | yyleng | ||
216 | yylex | ||
217 | yylineno | ||
218 | yyout | ||
219 | yyrestart | ||
220 | yytext | ||
221 | yywrap | ||
222 | yyalloc | ||
223 | yyrealloc | ||
224 | yyfree | ||
206 | ); | 225 | ); |
207 | 226 | ||
208 | our $VERSION = '1.00'; | 227 | our $VERSION = '1.00'; | ... | ... |
-
Please register or sign in to post a comment