Module Name:    src
Committed By:   rillig
Date:           Mon Nov  2 17:55:26 UTC 2020

Modified Files:
        src/usr.bin/make: var.c

Log Message:
make(1): add a comment where to fix the STOP/STORE test from varmod.mk


To generate a diff of this commit:
cvs rdiff -u -r1.645 -r1.646 src/usr.bin/make/var.c

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

Modified files:

Index: src/usr.bin/make/var.c
diff -u src/usr.bin/make/var.c:1.645 src/usr.bin/make/var.c:1.646
--- src/usr.bin/make/var.c:1.645	Mon Nov  2 17:00:33 2020
+++ src/usr.bin/make/var.c	Mon Nov  2 17:55:26 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: var.c,v 1.645 2020/11/02 17:00:33 rillig Exp $	*/
+/*	$NetBSD: var.c,v 1.646 2020/11/02 17:55:26 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -130,7 +130,7 @@
 #include "metachar.h"
 
 /*	"@(#)var.c	8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: var.c,v 1.645 2020/11/02 17:00:33 rillig Exp $");
+MAKE_RCSID("$NetBSD: var.c,v 1.646 2020/11/02 17:55:26 rillig Exp $");
 
 #define VAR_DEBUG1(fmt, arg1) DEBUG1(VAR, fmt, arg1)
 #define VAR_DEBUG2(fmt, arg1, arg2) DEBUG2(VAR, fmt, arg1, arg2)
@@ -3417,6 +3417,7 @@ ApplyModifiers(
 	    Parse_Error(PARSE_FATAL,
 			"Missing delimiter ':' after modifier \"%.*s\"",
 			(int)(p - mod), mod);
+	    /* TODO: propagate parse error to the enclosing expression */
 	}
     }
 out:

Reply via email to