In the following:
space ([ \t\f\r])+
opt_space ([ \t\f\r])*
cpp ^{opt_space}#{opt_space}
word [A-Za-z_][A-Za-z_0-9]*
arg_macro {cpp}define{space}{word}
/*arg_macro ^{opt_space}#{opt_space}define{space}{word}*/
%%
{arg_macro} ;
%%
I get an error message
test.l:9: unrecognized rule
If I uncomment the second version of arg_macro
and comment the first one, the error message goes away.
Any ideas why?