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

Diff for /src/usr.bin/make/parse.c between version 1.27 and 1.28

version 1.27, 1999/12/16 16:41:42 version 1.28, 1999/12/16 16:52:11
Line 2130 
Line 2130 
             lastc = c;              lastc = c;
         }          }
   
         Buf_AddChar(buf, '\0');  
         line = Buf_Retrieve(buf);          line = Buf_Retrieve(buf);
         lineno++;          lineno++;
             /* allow for non-newline terminated lines while skipping */              /* allow for non-newline terminated lines while skipping */
Line 2336 
Line 2335 
     line_read:      line_read:
         lineno++;          lineno++;
   
         if (lastc != '\0') {          if (lastc != '\0')
             Buf_AddChar(buf, lastc);              Buf_AddChar(buf, lastc);
         }  
         Buf_AddChar(buf, '\0');  
         line = Buf_Retrieve(buf);          line = Buf_Retrieve(buf);
         Buf_Destroy(buf, FALSE);          Buf_Destroy(buf, FALSE);
   

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28