> X       [something]
> 
> and I want Y to be anything but X so when I define it like:
> 
> Y       [^{X}]     it only exclude the characters '{' , '}' ,and X

Unfortunately, there's no way to do what you want here.

> ACK_BELL        \006 | \007

Remove the blanks around the '|':

        ACK_BELL        \006|\007

- Vern


_______________________________________________
Help-flex mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-flex

Reply via email to