[BACK]Return to lex.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / awk

Diff for /src/usr.bin/awk/lex.c between version 1.29 and 1.30

version 1.29, 2023/09/09 18:59:43 version 1.30, 2023/09/10 14:59:00
Line 588 
Line 588 
         *bp = 0;          *bp = 0;
         if (c == 0)          if (c == 0)
                 SYNTAX("non-terminated regular expression %.10s...", buf);                  SYNTAX("non-terminated regular expression %.10s...", buf);
         yylval.s = buf;          yylval.s = tostring(buf);
         unput('/');          unput('/');
         RET(REGEXPR);          RET(REGEXPR);
 }  }

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30