Module Name: src
Committed By: dholland
Date: Sat Sep 13 23:10:28 UTC 2014
Modified Files:
src/usr.bin/make: var.c
Log Message:
typo in comment, from the first reverted patch
To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 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.188 src/usr.bin/make/var.c:1.189
--- src/usr.bin/make/var.c:1.188 Sun Sep 7 20:55:34 2014
+++ src/usr.bin/make/var.c Sat Sep 13 23:10:28 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: var.c,v 1.188 2014/09/07 20:55:34 joerg Exp $ */
+/* $NetBSD: var.c,v 1.189 2014/09/13 23:10:28 dholland Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: var.c,v 1.188 2014/09/07 20:55:34 joerg Exp $";
+static char rcsid[] = "$NetBSD: var.c,v 1.189 2014/09/13 23:10:28 dholland 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.188 2014/09/07 20:55:34 joerg Exp $");
+__RCSID("$NetBSD: var.c,v 1.189 2014/09/13 23:10:28 dholland Exp $");
#endif
#endif /* not lint */
#endif
@@ -3746,7 +3746,7 @@ Var_Parse(const char *str, GNode *ctxt,
/*
* No need for nested expansion or anything, as we're
* the only one who sets these things and we sure don't
- * but nested invocations in them...
+ * put nested invocations in them...
*/
nstr = Buf_GetAll(&v->val, NULL);