(flex.info)Whenever flex can not match the input it says "flex scanner jammed".


Next: Why doesn't flex have non-greedy operators like perl does? Prev: Is there a way to make flex treat NULL like a regular character? Up: FAQ
Enter node , (file) or (file)node

Whenever flex can not match the input it says "flex scanner jammed".
====================================================================

You need to add a rule that matches the otherwise-unmatched text, e.g.,

     %option yylineno
     %%
     [[a bunch of rules here]]
     
     .	printf("bad input character '%s' at line %d\n", yytext, yylineno);

   See '%option default' for more information.


automatically generated by info2www version 1.2.2.9