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

Diff for /src/usr.bin/m4/main.c between version 1.50 and 1.51

version 1.50, 2001/09/28 12:05:38 version 1.51, 2001/10/06 10:52:25
Line 519 
Line 519 
   
         while ((isalnum(c = gpbc()) || c == '_') && tp < etp)          while ((isalnum(c = gpbc()) || c == '_') && tp < etp)
                 h = (h << 5) + h + (*tp++ = c);                  h = (h << 5) + h + (*tp++ = c);
         PUTBACK(c);          if (c != EOF)
                   PUTBACK(c);
         *tp = EOS;          *tp = EOS;
         /* token is too long, it won't match anything, but it can still          /* token is too long, it won't match anything, but it can still
          * be output. */           * be output. */

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51