[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.125 and 1.126

version 1.125, 2020/01/13 13:50:41 version 1.126, 2020/01/13 13:54:44
Line 1641 
Line 1641 
         bool expectingCommands = false;          bool expectingCommands = false;
         bool commands_seen = false;          bool commands_seen = false;
   
         /* somewhat permanent spaces to shave time */          /* permanent spaces to shave time */
         BUFFER buf;          static BUFFER buf;
         BUFFER copy;          static BUFFER copy;
   
         Buf_Init(&buf, MAKE_BSIZE);          Buf_Reinit(&buf, MAKE_BSIZE);
         Buf_Init(&copy, MAKE_BSIZE);          Buf_Reinit(&copy, MAKE_BSIZE);
   
         Parse_FromFile(filename, stream);          Parse_FromFile(filename, stream);
         do {          do {
Line 1686 
Line 1686 
         Cond_End();          Cond_End();
   
         Parse_ReportErrors();          Parse_ReportErrors();
         Buf_Destroy(&buf);  
         Buf_Destroy(&copy);  
 }  }
   
 void  void

Legend:
Removed from v.1.125  
changed lines
  Added in v.1.126