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

Diff for /src/usr.bin/make/lowparse.c between version 1.12 and 1.13

version 1.12, 2001/07/11 12:59:43 version 1.13, 2001/07/18 14:49:13
Line 430 
Line 430 
 unsigned long  unsigned long
 Parse_Getlineno()  Parse_Getlineno()
 {  {
     return current->lineno;      return current ? current->lineno : 0;
 }  }
   
 const char *  const char *
 Parse_Getfilename()  Parse_Getfilename()
 {  {
     return current->fname;      return current ? current->fname : NULL;
 }  }
   
 #ifdef CLEANUP  #ifdef CLEANUP

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13