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

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/parse.c between version 1.2 and 1.3

version 1.2, 1993/08/01 18:11:44 version 1.3, 1993/12/17 23:52:04
Line 2033  Parse_File(name, stream)
Line 2033  Parse_File(name, stream)
                 goto nextLine;                  goto nextLine;
             }              }
   
             if (*line == '\t'              if (*line == '\t') {
 #ifdef POSIX  
                        || *line == ' '  
 #endif  
                        )  
             {  
                 /*                  /*
                  * If a line starts with a tab (or space in POSIX-land), it                   * If a line starts with a tab, it can only hope to be
                  * can only hope to be a creation command.                   * a creation command.
                  */                   */
             shellCommand:              shellCommand:
                 for (cp = line + 1; isspace (*cp); cp++) {                  for (cp = line + 1; isspace (*cp); cp++) {

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVSweb <webmaster@jp.NetBSD.org>