home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cake / part05 / Lex / diff next >
Encoding:
Text File  |  1987-10-14  |  297 b   |  24 lines

  1. Line 47 contains:
  2.  
  3.             *yylastch++ = yych = input();
  4.  
  5. Add the lines
  6.  
  7. # ifdef EARLY_CATCH
  8.             if (yylastch >= yytext+YYLMAX){
  9.                 EARLY_RECOVERY
  10.                 }
  11. # endif
  12.  
  13. Line 138 contains:
  14.  
  15.                 yytext[yyleng] = 0;
  16.  
  17. Add the lines
  18.  
  19. # ifdef LATE_CATCH
  20.                 if (yyleng >= YYLMAX){
  21.                     LATE_RECOVERY
  22.                     }
  23. # endif
  24.