Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): document local variable in parse.c mor...



details:   https://anonhg.NetBSD.org/src/rev/dc15fd6eb4c0
branches:  trunk
changeset: 941866:dc15fd6eb4c0
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Oct 31 21:52:56 2020 +0000

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

diffstat:

 usr.bin/make/parse.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (31 lines):

diff -r 7d5c89dd5c67 -r dc15fd6eb4c0 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Sat Oct 31 21:48:06 2020 +0000
+++ b/usr.bin/make/parse.c      Sat Oct 31 21:52:56 2020 +0000
@@ -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 @@
 
 /* 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;



Home | Main Index | Thread Index | Old Index