Module Name:    src
Committed By:   rillig
Date:           Sat Oct 31 21:52:56 UTC 2020

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

Log Message:
make(1): document local variable in parse.c more precisely


To generate a diff of this commit:
cvs rdiff -u -r1.414 -r1.415 src/usr.bin/make/parse.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/parse.c
diff -u src/usr.bin/make/parse.c:1.414 src/usr.bin/make/parse.c:1.415
--- src/usr.bin/make/parse.c:1.414	Sat Oct 31 09:47:27 2020
+++ src/usr.bin/make/parse.c	Sat Oct 31 21:52:56 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: parse.c,v 1.414 2020/10/31 09:47:27 rillig Exp $	*/
+/*	$NetBSD: parse.c,v 1.415 2020/10/31 21:52:56 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -117,7 +117,7 @@
 #include "pathnames.h"
 
 /*	"@(#)parse.c	8.3 (Berkeley) 3/19/94"	*/
-MAKE_RCSID("$NetBSD: parse.c,v 1.414 2020/10/31 09:47:27 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.415 2020/10/31 21:52:56 rillig Exp $");
 
 /* types and constants */
 
@@ -196,9 +196,9 @@ static GNode *mainNode;
 
 /* eval state */
 
-/* During parsing, the targets from the currently active dependency line,
- * or NULL if the current line does not belong to a dependency line, for
- * example because it is a variable assignment.
+/* During parsing, the targets from the left-hand side of the currently
+ * active dependency line, or NULL if the current line does not belong to a
+ * dependency line, for example because it is a variable assignment.
  *
  * See unit-tests/deptgt.mk, keyword "parse.c:targets". */
 static GNodeList *targets;

Reply via email to