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): remove form feeds in the code



details:   https://anonhg.NetBSD.org/src/rev/fc7c3b7846dc
branches:  trunk
changeset: 942906:fc7c3b7846dc
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Aug 22 08:01:34 2020 +0000

description:
make(1): remove form feeds in the code

diffstat:

 usr.bin/make/compat.c |  12 ++++++------
 usr.bin/make/job.c    |   7 +++----
 usr.bin/make/job.h    |   4 +---
 usr.bin/make/make.c   |  24 ++++++++++++------------
 usr.bin/make/suff.c   |   8 ++++----
 5 files changed, 26 insertions(+), 29 deletions(-)

diffs (254 lines):

diff -r aaf5a0b1ce88 -r fc7c3b7846dc usr.bin/make/compat.c
--- a/usr.bin/make/compat.c     Sat Aug 22 07:49:44 2020 +0000
+++ b/usr.bin/make/compat.c     Sat Aug 22 08:01:34 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: compat.c,v 1.119 2020/08/21 03:36:03 rillig Exp $      */
+/*     $NetBSD: compat.c,v 1.120 2020/08/22 08:01:34 rillig Exp $      */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: compat.c,v 1.119 2020/08/21 03:36:03 rillig Exp $";
+static char rcsid[] = "$NetBSD: compat.c,v 1.120 2020/08/22 08:01:34 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)compat.c   8.2 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: compat.c,v 1.119 2020/08/21 03:36:03 rillig Exp $");
+__RCSID("$NetBSD: compat.c,v 1.120 2020/08/22 08:01:34 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -187,7 +187,7 @@
        kill(myPid, signo);
     }
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * CompatRunCommand --
@@ -499,7 +499,7 @@
 
     return status;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * Compat_Make --
@@ -680,7 +680,7 @@
     Lst_ForEach(gn->cohorts, Compat_Make, pgnp);
     return 0;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * Compat_Run --
diff -r aaf5a0b1ce88 -r fc7c3b7846dc usr.bin/make/job.c
--- a/usr.bin/make/job.c        Sat Aug 22 07:49:44 2020 +0000
+++ b/usr.bin/make/job.c        Sat Aug 22 08:01:34 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: job.c,v 1.207 2020/08/21 02:20:47 rillig Exp $ */
+/*     $NetBSD: job.c,v 1.208 2020/08/22 08:01:34 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: job.c,v 1.207 2020/08/21 02:20:47 rillig Exp $";
+static char rcsid[] = "$NetBSD: job.c,v 1.208 2020/08/22 08:01:34 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)job.c      8.2 (Berkeley) 3/19/94";
 #else
-__RCSID("$NetBSD: job.c,v 1.207 2020/08/21 02:20:47 rillig Exp $");
+__RCSID("$NetBSD: job.c,v 1.208 2020/08/22 08:01:34 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -2771,7 +2771,6 @@
        continue;
 }
 
-
 /*-
  *-----------------------------------------------------------------------
  * JobRestartJobs --
diff -r aaf5a0b1ce88 -r fc7c3b7846dc usr.bin/make/job.h
--- a/usr.bin/make/job.h        Sat Aug 22 07:49:44 2020 +0000
+++ b/usr.bin/make/job.h        Sat Aug 22 08:01:34 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: job.h,v 1.44 2020/08/13 03:54:57 rillig Exp $  */
+/*     $NetBSD: job.h,v 1.45 2020/08/22 08:01:34 rillig Exp $  */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -110,7 +110,6 @@
  */
 #define POLL_MSEC      5000
 
-
 /*-
  * Job Table definitions.
  *
@@ -179,7 +178,6 @@
 #define inPipe jobPipe[0]
 #define outPipe jobPipe[1]
 
-
 /*-
  * Shell Specifications:
  * Each shell type has associated with it the following information:
diff -r aaf5a0b1ce88 -r fc7c3b7846dc usr.bin/make/make.c
--- a/usr.bin/make/make.c       Sat Aug 22 07:49:44 2020 +0000
+++ b/usr.bin/make/make.c       Sat Aug 22 08:01:34 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.c,v 1.107 2020/08/21 04:42:02 rillig Exp $        */
+/*     $NetBSD: make.c,v 1.108 2020/08/22 08:01:34 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: make.c,v 1.107 2020/08/21 04:42:02 rillig Exp $";
+static char rcsid[] = "$NetBSD: make.c,v 1.108 2020/08/22 08:01:34 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)make.c     8.1 (Berkeley) 6/6/93";
 #else
-__RCSID("$NetBSD: make.c,v 1.107 2020/08/21 04:42:02 rillig Exp $");
+__RCSID("$NetBSD: make.c,v 1.108 2020/08/22 08:01:34 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -189,7 +189,7 @@
 {
     return Make_TimeStamp((GNode *)pgn, (GNode *)cgn);
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * Make_OODate --
@@ -350,7 +350,7 @@
 
     return oodate;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * MakeAddChild  --
@@ -382,7 +382,7 @@
     }
     return 0;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * MakeFindChild  --
@@ -412,7 +412,7 @@
 
     return 0;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * Make_HandleUse --
@@ -840,7 +840,7 @@
        Lst_CloseS(cgn->iParents);
     }
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * MakeAddAllSrc --
@@ -934,7 +934,7 @@
     }
     return 0;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * Make_DoAllVar --
@@ -980,7 +980,7 @@
     }
     gn->flags |= DONE_ALLSRC;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * MakeStartJobs --
@@ -1147,7 +1147,7 @@
 
     return FALSE;
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * MakePrintStatus --
@@ -1262,7 +1262,7 @@
     Lst_ForEach(gn->children, MakePrintStatus, errors);
     return 0;
 }
-
+
 
 /*-
  *-----------------------------------------------------------------------
diff -r aaf5a0b1ce88 -r fc7c3b7846dc usr.bin/make/suff.c
--- a/usr.bin/make/suff.c       Sat Aug 22 07:49:44 2020 +0000
+++ b/usr.bin/make/suff.c       Sat Aug 22 08:01:34 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: suff.c,v 1.100 2020/08/21 04:42:02 rillig Exp $        */
+/*     $NetBSD: suff.c,v 1.101 2020/08/22 08:01:34 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: suff.c,v 1.100 2020/08/21 04:42:02 rillig Exp $";
+static char rcsid[] = "$NetBSD: suff.c,v 1.101 2020/08/22 08:01:34 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)suff.c     8.4 (Berkeley) 3/21/94";
 #else
-__RCSID("$NetBSD: suff.c,v 1.100 2020/08/21 04:42:02 rillig Exp $");
+__RCSID("$NetBSD: suff.c,v 1.101 2020/08/22 08:01:34 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -475,7 +475,7 @@
        SuffFree(s);
     }
 }
-
+
 /*-
  *-----------------------------------------------------------------------
  * SuffInsert  --



Home | Main Index | Thread Index | Old Index