Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make: remove trailing whitespace, break lines



details:   https://anonhg.NetBSD.org/src/rev/11df6a625379
branches:  trunk
changeset: 359844:11df6a625379
user:      rillig <rillig%NetBSD.org@localhost>
date:      Thu Jan 27 10:34:55 2022 +0000

description:
make: remove trailing whitespace, break lines

No binary change, except for assertion line numbers.

diffstat:

 usr.bin/make/parse.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 288ac516ee70 -r 11df6a625379 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Thu Jan 27 09:53:43 2022 +0000
+++ b/usr.bin/make/parse.c      Thu Jan 27 10:34:55 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.656 2022/01/27 06:02:59 sjg Exp $  */
+/*     $NetBSD: parse.c,v 1.657 2022/01/27 10:34:55 rillig Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -106,7 +106,7 @@
 #include "pathnames.h"
 
 /*     "@(#)parse.c    8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: parse.c,v 1.656 2022/01/27 06:02:59 sjg Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.657 2022/01/27 10:34:55 rillig Exp $");
 
 /*
  * A file being read.
@@ -1294,7 +1294,6 @@
 
        for (ln = targets->first; ln != NULL; ln = ln->next)
                LinkSourceVar(ln->datum, var);
-       
 }
 
 static bool
@@ -1314,7 +1313,8 @@
                         * Check if this makefile has disabled
                         * setting local variables.
                         */
-                       bool target_vars = GetBooleanExpr("${.MAKE.TARGET_LOCAL_VARIABLES}", true);
+                       bool target_vars = GetBooleanExpr(
+                           "${.MAKE.TARGET_LOCAL_VARIABLES}", true);
 
                        if (target_vars)
                                LinkVarToTargets(&var);
@@ -1322,7 +1322,7 @@
                        if (target_vars)
                                return true;
                }
-                       
+
                /*
                 * The targets take real sources, so we must beware of archive
                 * specifications (i.e. things with left parentheses in them)
@@ -1735,7 +1735,7 @@
                FStr_Done(&avalue);
        }
 }
-              
+
 static void
 Parse_Var(VarAssign *var, GNode *scope)
 {



Home | Main Index | Thread Index | Old Index