View | Details | Raw Unified | Return to issue 50053
Collapse All | Expand All

(-)dmake/parse.c (-2 / +2 lines)
Lines 152-159 Link Here
152
	       if( Parse_macro(pTmpBuf, M_DEFAULT) ) break;/* it's a macro def*/
152
	       if( Parse_macro(pTmpBuf, M_DEFAULT) ) break;/* it's a macro def*/
153
	       if( Parse_rule_def( &State ) ) 	    break;/* it's a rule def */
153
	       if( Parse_rule_def( &State ) ) 	    break;/* it's a rule def */
154
154
155
	       /* if just blank line then ignore it */
155
	       /* if it is an empty or blank line then ignore it */
156
	       if( *DmStrSpn( Buffer, " \t\r\n" ) == '\0' ) break;
156
	       if( *Buffer || *DmStrSpn( Buffer, " \t\r\n" ) == '\0' ) break;
157
	       
157
	       
158
	       /* otherwise assume it was a line of unrecognized input, or a
158
	       /* otherwise assume it was a line of unrecognized input, or a
159
	        * recipe line out of place so print a message */
159
	        * recipe line out of place so print a message */

Return to issue 50053