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

Diff for /src/usr.bin/at/parsetime.c between version 1.4 and 1.5

version 1.4, 1997/03/01 23:40:10 version 1.5, 1998/06/26 03:20:11
Line 594 
Line 594 
   
         switch (token()) {          switch (token()) {
         case NOW:       /* now is optional prefix for PLUS tree */          case NOW:       /* now is optional prefix for PLUS tree */
                 expect(PLUS);                  token();
                   if (sc_tokid == EOF) {
                           runtime = nowtime;
                           break;
                   }
                   else if (sc_tokid != PLUS)
                           plonk(sc_tokid);
         case PLUS:          case PLUS:
                 plus(&runtime);                  plus(&runtime);
                 break;                  break;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5