Re: flex and octant and definition
Vern Paxson <[email protected]>
| Newsgroups | gmane.comp.lex.flex.general |
|---|---|
| Message-ID | <[email protected]> |
> 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