It should also be pointed out to the O.P. that flex only recognizes
one-byte hex escapes, NOT 2-byte hex numbers.
 
\x092f|\x0e3f|[\x20a0-\x20cf]
 
  should be rewritten as
 
\x09\x2f|\x0e\x3f|\x20[\xa0-\xcf]
 
 - - Martin


_______________________________________________
help-flex mailing list
help-flex@gnu.org
http://lists.gnu.org/mailman/listinfo/help-flex

Reply via email to