[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.26 and 1.27

version 1.26, 1999/12/16 16:27:12 version 1.27, 1999/12/16 16:41:42
Line 2131 
Line 2131 
         }          }
   
         Buf_AddChar(buf, '\0');          Buf_AddChar(buf, '\0');
         line = Buf_GetAll(buf, NULL);          line = Buf_Retrieve(buf);
         lineno++;          lineno++;
             /* allow for non-newline terminated lines while skipping */              /* allow for non-newline terminated lines while skipping */
         if (line[0] == '.')          if (line[0] == '.')
Line 2340 
Line 2340 
             Buf_AddChar(buf, lastc);              Buf_AddChar(buf, lastc);
         }          }
         Buf_AddChar(buf, '\0');          Buf_AddChar(buf, '\0');
         line = Buf_GetAll(buf, NULL);          line = Buf_Retrieve(buf);
         Buf_Destroy(buf, FALSE);          Buf_Destroy(buf, FALSE);
   
         /*          /*

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