home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d156 / flex.lha / Flex / Flex2 / patch.1 < prev    next >
Text File  |  1988-10-02  |  561b  |  26 lines

  1. Greg Lee mentioned a bug regarding "\^" not correctly matching a caret
  2. in the input.  This is due to a throw-back to the dark ages, and the
  3. fix follows.
  4.  
  5. revision 1.3 
  6. *** scan.l      Thu May  5 14:32:53 1988
  7. --- /tmp/da1563 Thu May  5 14:36:11 1988
  8. ***************
  9. *** 48,54 ****
  10.   
  11.   SCNAME                {NAME}
  12.   
  13. ! ESCSEQ                \\([^\n]|0[0-9]{1,3})
  14.   
  15.   %%
  16.       static int bracelevel, didadef;
  17. --- 48,54 ----
  18.   
  19.   SCNAME                {NAME}
  20.   
  21. ! ESCSEQ                \\([^^\n]|"^".|0[0-9]{1,3})
  22.   
  23.   %%
  24.       static int bracelevel, didadef;
  25.  
  26.