Module Name: src
Committed By: rillig
Date: Wed Nov 4 06:09:55 UTC 2020
Modified Files:
src/usr.bin/make: parse.c
Log Message:
make(1): fix indentation in parse.c
To generate a diff of this commit:
cvs rdiff -u -r1.424 -r1.425 src/usr.bin/make/parse.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/parse.c
diff -u src/usr.bin/make/parse.c:1.424 src/usr.bin/make/parse.c:1.425
--- src/usr.bin/make/parse.c:1.424 Wed Nov 4 04:49:32 2020
+++ src/usr.bin/make/parse.c Wed Nov 4 06:09:55 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.424 2020/11/04 04:49:32 rillig Exp $ */
+/* $NetBSD: parse.c,v 1.425 2020/11/04 06:09:55 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.424 2020/11/04 04:49:32 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.425 2020/11/04 06:09:55 rillig Exp $");
/* types and constants */
@@ -1850,7 +1850,7 @@ Parse_IsVar(const char *p, VarAssign *ou
/* Scan for one of the assignment operators outside a variable expansion */
while (*p != '\0') {
- char ch = *p++;
+ char ch = *p++;
if (ch == '(' || ch == '{') {
level++;
continue;