Module Name:    src
Committed By:   rillig
Date:           Sat Aug  1 08:42:33 UTC 2020

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

Log Message:
make(1): fix documentation of Var_Value


To generate a diff of this commit:
cvs rdiff -u -r1.373 -r1.374 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.373 src/usr.bin/make/var.c:1.374
--- src/usr.bin/make/var.c:1.373	Sat Aug  1 07:29:04 2020
+++ src/usr.bin/make/var.c	Sat Aug  1 08:42:33 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: var.c,v 1.373 2020/08/01 07:29:04 rillig Exp $	*/
+/*	$NetBSD: var.c,v 1.374 2020/08/01 08:42:33 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: var.c,v 1.373 2020/08/01 07:29:04 rillig Exp $";
+static char rcsid[] = "$NetBSD: var.c,v 1.374 2020/08/01 08:42:33 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)var.c	8.3 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: var.c,v 1.373 2020/08/01 07:29:04 rillig Exp $");
+__RCSID("$NetBSD: var.c,v 1.374 2020/08/01 08:42:33 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -1007,7 +1007,7 @@ Var_Exists(const char *name, GNode *ctxt
  *-----------------------------------------------------------------------
  * Var_Value --
  *	Return the unexpanded value of the given variable in the given
- *	context.
+ *	context, or the usual contexts.
  *
  * Input:
  *	name		name to find

Reply via email to