[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Most likely, you have (in error) placed the opening `{' of the action block on a different line than the rule, e.g.,
^(foo|bar) { <<<--- WRONG! } |
flex
requires that the opening `{' of an action associated with a rule
begin on the same line as does the rule. You need instead to write your rules
as follows:
^(foo|bar) { // CORRECT! } |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] |
This document was generated by Wolfram Kahl on September, 9 2006 using texi2html 1.76.