Module Name: src
Committed By: rillig
Date: Mon Oct 26 07:37:52 UTC 2020
Modified Files:
src/usr.bin/make: for.c
Log Message:
make(1): remove stray closing brace from comment
To generate a diff of this commit:
cvs rdiff -u -r1.110 -r1.111 src/usr.bin/make/for.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/for.c
diff -u src/usr.bin/make/for.c:1.110 src/usr.bin/make/for.c:1.111
--- src/usr.bin/make/for.c:1.110 Mon Oct 26 07:33:48 2020
+++ src/usr.bin/make/for.c Mon Oct 26 07:37:52 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: for.c,v 1.110 2020/10/26 07:33:48 rillig Exp $ */
+/* $NetBSD: for.c,v 1.111 2020/10/26 07:37:52 rillig Exp $ */
/*
* Copyright (c) 1992, The Regents of the University of California.
@@ -60,7 +60,7 @@
#include "make.h"
/* "@(#)for.c 8.1 (Berkeley) 6/6/93" */
-MAKE_RCSID("$NetBSD: for.c,v 1.110 2020/10/26 07:33:48 rillig Exp $");
+MAKE_RCSID("$NetBSD: for.c,v 1.111 2020/10/26 07:37:52 rillig Exp $");
/* The .for loop substitutes the items as ${:U<value>...}, which means
* that characters that break this syntax must be backslash-escaped. */
@@ -400,7 +400,7 @@ SubstVarShort(For *f, char const ch, con
const char *p = *pp;
size_t i;
- /* Probably a single character name, ignore $$ and stupid ones. {*/
+ /* Probably a single character name, ignore $$ and stupid ones. */
if (!f->short_var || strchr("}):$", ch) != NULL) {
p++;
*pp = p;