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(1): align end-of-line comments with tabs



details:   https://anonhg.NetBSD.org/src/rev/75a37c5fd7d4
branches:  trunk
changeset: 946328:75a37c5fd7d4
user:      rillig <rillig%NetBSD.org@localhost>
date:      Mon Nov 23 20:41:20 2020 +0000

description:
make(1): align end-of-line comments with tabs

diffstat:

 usr.bin/make/cond.c                   |   6 +-
 usr.bin/make/dir.c                    |  10 ++--
 usr.bin/make/filemon/filemon_ktrace.c |   8 ++--
 usr.bin/make/job.c                    |   6 +-
 usr.bin/make/make.h                   |  13 +++---
 usr.bin/make/meta.c                   |   6 +-
 usr.bin/make/parse.c                  |   6 +-
 usr.bin/make/suff.c                   |  10 ++--
 usr.bin/make/util.c                   |  68 +++++++++++++++++-----------------
 9 files changed, 67 insertions(+), 66 deletions(-)

diffs (truncated from 323 to 300 lines):

diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/cond.c
--- a/usr.bin/make/cond.c       Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/cond.c       Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cond.c,v 1.215 2020/11/23 20:05:31 rillig Exp $        */
+/*     $NetBSD: cond.c,v 1.216 2020/11/23 20:41:20 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -94,7 +94,7 @@
 #include "dir.h"
 
 /*     "@(#)cond.c     8.2 (Berkeley) 1/2/94"  */
-MAKE_RCSID("$NetBSD: cond.c,v 1.215 2020/11/23 20:05:31 rillig Exp $");
+MAKE_RCSID("$NetBSD: cond.c,v 1.216 2020/11/23 20:41:20 rillig Exp $");
 
 /*
  * The parsing of conditional expressions is based on this grammar:
@@ -1182,7 +1182,7 @@
 
                /* Quite likely this is 'else' or 'elif' */
                p += 2;
-               if (is_token(p, "se", 2)) {        /* It is an 'else'. */
+               if (is_token(p, "se", 2)) {     /* It is an 'else'. */
 
                        if (opts.lint && p[2] != '\0')
                                Parse_Error(PARSE_FATAL,
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/dir.c
--- a/usr.bin/make/dir.c        Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/dir.c        Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dir.c,v 1.212 2020/11/23 20:21:34 rillig Exp $ */
+/*     $NetBSD: dir.c,v 1.213 2020/11/23 20:41:20 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -134,7 +134,7 @@
 #include "job.h"
 
 /*     "@(#)dir.c      8.2 (Berkeley) 1/2/94"  */
-MAKE_RCSID("$NetBSD: dir.c,v 1.212 2020/11/23 20:21:34 rillig Exp $");
+MAKE_RCSID("$NetBSD: dir.c,v 1.213 2020/11/23 20:41:20 rillig Exp $");
 
 #define DIR_DEBUG0(text) DEBUG0(DIR, text)
 #define DIR_DEBUG1(fmt, arg1) DEBUG1(DIR, fmt, arg1)
@@ -439,7 +439,7 @@
         * count to make sure it's not destroyed.
         */
        dot->refCount++;
-       Dir_SetPATH();                /* initialize */
+       Dir_SetPATH();          /* initialize */
 }
 
 /* Clean up the directories module. */
@@ -721,8 +721,8 @@
                        Lst_Append(expansions, file);
                }
 
-               piece = piece_end +
-                       1;        /* skip over the comma or closing brace */
+               /* skip over the comma or closing brace */
+               piece = piece_end + 1;
        }
 }
 
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/filemon/filemon_ktrace.c
--- a/usr.bin/make/filemon/filemon_ktrace.c     Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/filemon/filemon_ktrace.c     Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: filemon_ktrace.c,v 1.4 2020/11/05 17:27:16 rillig Exp $        */
+/*     $NetBSD: filemon_ktrace.c,v 1.5 2020/11/23 20:41:20 rillig Exp $        */
 
 /*-
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -90,9 +90,9 @@
 };
 
 struct filemon {
-       int                     ktrfd; /* kernel writes ktrace events here */
-       FILE                    *in;   /* we read ktrace events from here */
-       FILE                    *out;  /* we write filemon events to here */
+       int                     ktrfd;  /* kernel writes ktrace events here */
+       FILE                    *in;    /* we read ktrace events from here */
+       FILE                    *out;   /* we write filemon events to here */
        rb_tree_t               active;
        pid_t                   child;
 
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/job.c
--- a/usr.bin/make/job.c        Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/job.c        Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: job.c,v 1.326 2020/11/16 18:28:27 rillig Exp $ */
+/*     $NetBSD: job.c,v 1.327 2020/11/23 20:41:20 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -143,7 +143,7 @@
 #include "trace.h"
 
 /*     "@(#)job.c      8.2 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: job.c,v 1.326 2020/11/16 18:28:27 rillig Exp $");
+MAKE_RCSID("$NetBSD: job.c,v 1.327 2020/11/23 20:41:20 rillig Exp $");
 
 /* A shell defines how the commands are run.  All commands for a target are
  * written into a single file, which is then given to the shell to execute
@@ -1110,7 +1110,7 @@
        (void)fprintf(stderr, "*** couldn't touch %s: %s\n",
                      file, strerror(errno));
        (void)fflush(stderr);
-       return;                /* XXX: What about propagating the error? */
+       return;                 /* XXX: What about propagating the error? */
     }
 
     /* Last resort: update the file's time stamps in the traditional way.
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/make.h
--- a/usr.bin/make/make.h       Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/make.h       Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.h,v 1.214 2020/11/22 21:34:34 rillig Exp $        */
+/*     $NetBSD: make.h,v 1.215 2020/11/23 20:41:20 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -490,12 +490,13 @@
 
 #define        MAKEFLAGS       ".MAKEFLAGS"
 #define        MAKEOVERRIDES   ".MAKEOVERRIDES"
-#define        MAKE_JOB_PREFIX ".MAKE.JOB.PREFIX" /* prefix for job target output */
-#define        MAKE_EXPORTED   ".MAKE.EXPORTED"   /* variables we export */
-#define        MAKE_MAKEFILES  ".MAKE.MAKEFILES"  /* all makefiles already loaded */
-#define        MAKE_LEVEL      ".MAKE.LEVEL"      /* recursion level */
+#define        MAKE_JOB_PREFIX ".MAKE.JOB.PREFIX"      /* prefix when printing the
+                                                * target of a job */
+#define        MAKE_EXPORTED   ".MAKE.EXPORTED"        /* exported variables */
+#define        MAKE_MAKEFILES  ".MAKE.MAKEFILES"       /* all loaded makefiles */
+#define        MAKE_LEVEL      ".MAKE.LEVEL"           /* recursion level */
 #define MAKE_MAKEFILE_PREFERENCE ".MAKE.MAKEFILE_PREFERENCE"
-#define MAKE_DEPENDFILE        ".MAKE.DEPENDFILE" /* .depend */
+#define MAKE_DEPENDFILE        ".MAKE.DEPENDFILE"      /* .depend */
 #define MAKE_MODE      ".MAKE.MODE"
 #ifndef MAKE_LEVEL_ENV
 # define MAKE_LEVEL_ENV        "MAKELEVEL"
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/meta.c
--- a/usr.bin/make/meta.c       Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/meta.c       Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: meta.c,v 1.144 2020/11/15 12:02:44 rillig Exp $ */
+/*      $NetBSD: meta.c,v 1.145 2020/11/23 20:41:20 rillig Exp $ */
 
 /*
  * Implement 'meta' mode.
@@ -75,7 +75,7 @@
 static Boolean metaVerbose = FALSE;
 static Boolean metaIgnoreCMDs = FALSE; /* ignore CMDs in .meta files */
 static Boolean metaIgnorePatterns = FALSE; /* do we need to do pattern matches */
-static Boolean metaIgnoreFilter = FALSE;   /* do we have more complex filtering? */
+static Boolean metaIgnoreFilter = FALSE; /* do we have more complex filtering? */
 static Boolean metaCurdirOk = FALSE;   /* write .meta in .CURDIR Ok? */
 static Boolean metaSilent = FALSE;     /* if we have a .meta be SILENT */
 
@@ -1420,7 +1420,7 @@
                            sdirs[sdx++] = p; /* done */
                        } else {
                            if (strcmp(".", p) == 0)
-                               continue;  /* no point */
+                               continue; /* no point */
 
                            /* Check vs latestdir */
                            snprintf(fname1, sizeof fname1, "%s/%s", latestdir, p);
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c      Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/parse.c      Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parse.c,v 1.448 2020/11/22 20:36:17 rillig Exp $       */
+/*     $NetBSD: parse.c,v 1.449 2020/11/23 20:41:20 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.448 2020/11/22 20:36:17 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.449 2020/11/23 20:41:20 rillig Exp $");
 
 /* types and constants */
 
@@ -2788,7 +2788,7 @@
            continue;
        case COND_PARSE:
            continue;
-       case COND_INVALID:    /* Not a conditional line */
+       case COND_INVALID:      /* Not a conditional line */
            /* Check for .for loops */
            rval = For_Eval(line);
            if (rval == 0)
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/suff.c
--- a/usr.bin/make/suff.c       Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/suff.c       Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: suff.c,v 1.307 2020/11/23 18:07:10 rillig Exp $        */
+/*     $NetBSD: suff.c,v 1.308 2020/11/23 20:41:20 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -114,7 +114,7 @@
 #include "dir.h"
 
 /*     "@(#)suff.c     8.4 (Berkeley) 3/21/94" */
-MAKE_RCSID("$NetBSD: suff.c,v 1.307 2020/11/23 18:07:10 rillig Exp $");
+MAKE_RCSID("$NetBSD: suff.c,v 1.308 2020/11/23 20:41:20 rillig Exp $");
 
 #define SUFF_DEBUG0(text) DEBUG0(SUFF, text)
 #define SUFF_DEBUG1(fmt, arg1) DEBUG1(SUFF, fmt, arg1)
@@ -1271,7 +1271,7 @@
             * on the Arch module to find the nodes for us, expanding
             * variables in the parent's context.
             */
-           char        *sacrifice = cp;
+           char *sacrifice = cp;
 
            (void)Arch_ParseArchive(&sacrifice, members, pgn);
        } else {
@@ -1282,8 +1282,8 @@
             * doesn't understand about variable specifications with
             * spaces in them...
             */
-           char            *start;
-           char            *initcp = cp;   /* For freeing... */
+           char *start;
+           char *initcp = cp;  /* For freeing... */
 
            start = cp;
            pp_skip_hspace(&start);
diff -r 24bf5e1efb28 -r 75a37c5fd7d4 usr.bin/make/util.c
--- a/usr.bin/make/util.c       Mon Nov 23 20:21:34 2020 +0000
+++ b/usr.bin/make/util.c       Mon Nov 23 20:41:20 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.c,v 1.68 2020/11/16 18:29:49 rillig Exp $ */
+/*     $NetBSD: util.c,v 1.69 2020/11/23 20:41:20 rillig Exp $ */
 
 /*
  * Missing stuff from OS's
@@ -15,7 +15,7 @@
 
 #include "make.h"
 
-MAKE_RCSID("$NetBSD: util.c,v 1.68 2020/11/16 18:29:49 rillig Exp $");
+MAKE_RCSID("$NetBSD: util.c,v 1.69 2020/11/23 20:41:20 rillig Exp $");
 
 #if !defined(MAKE_NATIVE) && !defined(HAVE_STRERROR)
 extern int errno, sys_nerr;
@@ -170,38 +170,38 @@
 
 char    *sys_siglist[] = {
        "Signal 0",
-       "Hangup",                       /* SIGHUP    */
-       "Interrupt",                    /* SIGINT    */
-       "Quit",                         /* SIGQUIT   */
-       "Illegal instruction",          /* SIGILL    */
-       "Trace/BPT trap",               /* SIGTRAP   */
-       "IOT trap",                     /* SIGIOT    */
-       "EMT trap",                     /* SIGEMT    */
-       "Floating point exception",     /* SIGFPE    */
-       "Killed",                       /* SIGKILL   */
-       "Bus error",                    /* SIGBUS    */
-       "Segmentation fault",           /* SIGSEGV   */
-       "Bad system call",              /* SIGSYS    */
-       "Broken pipe",                  /* SIGPIPE   */
-       "Alarm clock",                  /* SIGALRM   */
-       "Terminated",                   /* SIGTERM   */
-       "User defined signal 1",        /* SIGUSR1   */
-       "User defined signal 2",        /* SIGUSR2   */
-       "Child exited",                 /* SIGCLD    */
-       "Power-fail restart",           /* SIGPWR    */
-       "Virtual timer expired",        /* SIGVTALRM */
-       "Profiling timer expired",      /* SIGPROF   */
-       "I/O possible",                 /* SIGIO     */
-       "Window size changes",          /* SIGWINDOW */
-       "Stopped (signal)",             /* SIGSTOP   */
-       "Stopped",                      /* SIGTSTP   */
-       "Continued",                    /* SIGCONT   */
-       "Stopped (tty input)",          /* SIGTTIN   */
-       "Stopped (tty output)",         /* SIGTTOU   */
-       "Urgent I/O condition",         /* SIGURG    */
-       "Remote lock lost (NFS)",       /* SIGLOST   */
-       "Signal 31",                    /* reserved  */
-       "DIL signal"                    /* SIGDIL    */
+       "Hangup",                       /* SIGHUP    */
+       "Interrupt",                    /* SIGINT    */
+       "Quit",                         /* SIGQUIT   */
+       "Illegal instruction",          /* SIGILL    */
+       "Trace/BPT trap",               /* SIGTRAP   */
+       "IOT trap",                     /* SIGIOT    */
+       "EMT trap",                     /* SIGEMT    */
+       "Floating point exception",     /* SIGFPE    */
+       "Killed",                       /* SIGKILL   */
+       "Bus error",                    /* SIGBUS    */
+       "Segmentation fault",           /* SIGSEGV   */
+       "Bad system call",              /* SIGSYS    */



Home | Main Index | Thread Index | Old Index