Module Name:    src
Committed By:   rillig
Date:           Mon Nov  2 18:15:12 UTC 2020

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

Log Message:
make(1): fix wording of a comment in var.c

The "why again" could be easily misunderstood, it was ambiguous.


To generate a diff of this commit:
cvs rdiff -u -r1.646 -r1.647 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.646 src/usr.bin/make/var.c:1.647
--- src/usr.bin/make/var.c:1.646	Mon Nov  2 17:55:26 2020
+++ src/usr.bin/make/var.c	Mon Nov  2 18:15:12 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: var.c,v 1.646 2020/11/02 17:55:26 rillig Exp $	*/
+/*	$NetBSD: var.c,v 1.647 2020/11/02 18:15:12 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.646 2020/11/02 17:55:26 rillig Exp $");
+MAKE_RCSID("$NetBSD: var.c,v 1.647 2020/11/02 18:15:12 rillig Exp $");
 
 #define VAR_DEBUG1(fmt, arg1) DEBUG1(VAR, fmt, arg1)
 #define VAR_DEBUG2(fmt, arg1, arg2) DEBUG2(VAR, fmt, arg1, arg2)
@@ -3291,7 +3291,7 @@ ApplyModifiersIndirect(
 
 	free(mods_freeIt);
 	/* XXX: apply_mods doesn't sound like "not interested". */
-	/* XXX: Why is the indirect modifier parsed again by
+	/* XXX: Why is the indirect modifier parsed once more by
 	 * apply_mods?  If any, p should be advanced to nested_p. */
 	return AMIR_APPLY_MODS;
     }

Reply via email to