Source-Changes-HG archive

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

[src/trunk]: src/share/man/man8 Boring whitespace fixes.



details:   https://anonhg.NetBSD.org/src/rev/a03ae7b5f20e
branches:  trunk
changeset: 514587:a03ae7b5f20e
user:      wiz <wiz%NetBSD.org@localhost>
date:      Wed Sep 05 23:53:22 2001 +0000

description:
Boring whitespace fixes.

diffstat:

 share/man/man8/MAKEDEV2manpage.pl          |  30 +++++++++++++++---------------
 share/man/man8/genassym.sh.8               |   6 +++---
 share/man/man8/makedev.8                   |  10 +++++-----
 share/man/man8/man8.alpha/boot.8           |   8 ++++----
 share/man/man8/man8.alpha/installboot.8    |   8 ++++----
 share/man/man8/man8.alpha/mkbootimage.8    |   8 ++++----
 share/man/man8/man8.alpha/setnetbootinfo.8 |   8 ++++----
 share/man/man8/man8.amiga/binpatch.8       |   6 +++---
 share/man/man8/man8.amiga/installboot.8    |  16 ++++++++--------
 share/man/man8/man8.atari/binpatch.8       |   6 +++---
 share/man/man8/man8.atari/bootpref.8       |  14 +++++++-------
 share/man/man8/man8.hp300/boot.8           |   4 ++--
 share/man/man8/man8.hp300/crash.8          |   4 ++--
 share/man/man8/man8.i386/boot.8            |  14 +++++++-------
 share/man/man8/man8.i386/boot_console.8    |   4 ++--
 share/man/man8/man8.i386/dosboot.8         |  30 +++++++++++++++---------------
 share/man/man8/man8.i386/installboot.8     |  12 ++++++------
 share/man/man8/man8.i386/w95boot.8         |   4 ++--
 share/man/man8/man8.mac68k/boot.8          |   4 ++--
 share/man/man8/man8.pmax/boot.8            |   6 +++---
 share/man/man8/man8.pmax/installboot.8     |  16 ++++++++--------
 share/man/man8/man8.sparc/boot.8           |   4 ++--
 share/man/man8/man8.sparc/installboot.8    |   4 ++--
 share/man/man8/man8.vax/boot.8             |   6 +++---
 share/man/man8/man8.vax/crash.8            |   4 ++--
 share/man/man8/man8.vax/drtest.8           |  26 +++++++++++++-------------
 share/man/man8/man8.vax/format.8           |  28 ++++++++++++++--------------
 share/man/man8/man8.vax/installboot.8      |  18 +++++++++---------
 share/man/man8/rc.8                        |   6 +++---
 29 files changed, 157 insertions(+), 157 deletions(-)

diffs (truncated from 1173 to 300 lines):

diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/MAKEDEV2manpage.pl
--- a/share/man/man8/MAKEDEV2manpage.pl Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/MAKEDEV2manpage.pl Wed Sep 05 23:53:22 2001 +0000
@@ -1,6 +1,6 @@
 #!/usr/pkg/bin/perl
 #
-#      $NetBSD: MAKEDEV2manpage.pl,v 1.7 2001/06/26 02:28:21 hubertf Exp $
+#      $NetBSD: MAKEDEV2manpage.pl,v 1.8 2001/09/05 23:53:22 wiz Exp $
 #
 # Copyright (c) 1999
 #      Hubert Feyrer <hubertf%netbsd.org@localhost>.  All rights reserved.
@@ -37,7 +37,7 @@
 ###########################################################################
 #
 # Convert src/etc/etc.${ARCH}/MAKEDEV and
-# src/share/man/man8/MAKEDEV.8.template to  
+# src/share/man/man8/MAKEDEV.8.template to
 # src/share/man/man8/man8.${ARCH}/MAKEDEV.8, replacing
 #  - @@@SPECIAL@@@ with all targets in the first section (all, std, ...)
 #  - @@@DEVICES@@@ with the remaining targets
@@ -58,12 +58,12 @@
     } else {
        $h = <MAKEDEV>;
     }
-    
-    # Skip empty lines 
+
+    # Skip empty lines
     while ($h =~ /^#\s*$/) {
           $h = <MAKEDEV>;
     }
-    
+
     if ($h =~ /^#\s/) {
        if ($h =~ /^# /) {
            # Not a device/other target
@@ -101,7 +101,7 @@
     $l=read1line();
     while($l =~ /^#\t/) {
          $l =~ s/#\s+//;
-         
+
          ($target, @line) = split(/\s+/, $l);
          $l = join(" ", @line);
 
@@ -110,11 +110,11 @@
           $l =~ s/^(.)/\u$1/; # uppercase first word
          print MANPAGE ".It Ar $target\n";
          print MANPAGE "$l\n";
-         
+
          $l = read1line();
     }
     $_lastline = $l; # unread
-    
+
     print MANPAGE ".El\n";
 }
 
@@ -127,13 +127,13 @@
     $l = read1line();
     do {
        $l =~ s/#\s+//;
-       print MANPAGE ".It $l";     # Print section heading 
+       print MANPAGE ".It $l";     # Print section heading
 
        $l = read1line();
        print MANPAGE ". Bl -tag -width 0123456789 -compact\n";
        while($l =~ /^#\t/) {
              $l =~ s/#\s+//;
-             
+
              ($target, @line) = split(/\s+/, $l);
              $target =~ s/\*/#/;
              $l = join(" ", @line);
@@ -165,7 +165,7 @@
 
              print MANPAGE ". It Ar $target\n";
              print MANPAGE "$l\n";
-         
+
              $l = read1line();
         }
         print MANPAGE ". El\n";
@@ -207,7 +207,7 @@
     print MANPAGE ".\\\"\n";
 
     open(MAKEDEV, "../../../etc/etc.${arch}/MAKEDEV") or die;
-    
+
     open(TEMPLATE, "MAKEDEV.8.template")       or die;
     while(<TEMPLATE>) {
        if (/\@\@\@.*\@\@\@/) {
@@ -261,12 +261,12 @@
 ###########################################################################
 ###
 ###   M   A   I   N
-### 
+###
 ###########################################################################
 ###########################################################################
 # cd /usr/src/share/man/man8
 chomp($pwd=`pwd`);
-die "Run this in .../src/share/man/man8 !\n" 
+die "Run this in .../src/share/man/man8 !\n"
     if ($pwd !~ m:share/man/man8: );
 
 if ($#ARGV >= 0) {
@@ -274,7 +274,7 @@
 
 } else {
 
-    # Determine available archs by looking for man8.* 
+    # Determine available archs by looking for man8.*
     opendir(D, ".") || die;
     while ($d=readdir(D)) {
         if ($d =~ /man8\.(.*)$/) {
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/genassym.sh.8
--- a/share/man/man8/genassym.sh.8      Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/genassym.sh.8      Wed Sep 05 23:53:22 2001 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: genassym.sh.8,v 1.5 1999/03/17 20:31:19 garbled Exp $
+.\"    $NetBSD: genassym.sh.8,v 1.6 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1997 Matthias Pfaller.
 .\" All rights reserved.
@@ -49,9 +49,9 @@
 written in assembler to gain access to information (e.g. structure
 offsets and sizes) normally only known to the C compiler.
 .Nm
-resides in the 
+resides in the
 .Pa /sys/kern
-directory. Arguments to 
+directory. Arguments to
 .Nm
 are usually of the form
 .Ar ${CC} ${CFLAGS} ${CPPFLAGS}
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/makedev.8
--- a/share/man/man8/makedev.8  Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/makedev.8  Wed Sep 05 23:53:22 2001 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: makedev.8,v 1.6 2000/11/07 06:43:28 lukem Exp $
+.\"    $NetBSD: makedev.8,v 1.7 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -46,10 +46,10 @@
 .Sh DESCRIPTION
 .Nm
 is a shell script normally used to install
-special files.  It resides in the 
+special files.  It resides in the
 .Pa /dev
 directory, as this is the normal location of special files.
-Arguments to 
+Arguments to
 .Nm
 are usually of the form
 .Ar device-name Ns Sy \&?
@@ -86,7 +86,7 @@
 devices would be made for the appropriate system.
 .It Sy local
 Create those devices specific to the local site.  This
-request causes the shell file 
+request causes the shell file
 .Pa /dev/MAKEDEV.local
 to be executed.  Site specific commands, such as those
 used to setup dialup lines as
@@ -95,7 +95,7 @@
 in this file.
 .El
 .Pp
-Since all devices are created using 
+Since all devices are created using
 .Xr mknod 8 ,
 this shell script is useful only to the super-user.
 .Sh DIAGNOSTICS
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/man8.alpha/boot.8
--- a/share/man/man8/man8.alpha/boot.8  Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/man8.alpha/boot.8  Wed Sep 05 23:53:22 2001 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: boot.8,v 1.3 2000/06/14 17:25:48 cgd Exp $
+.\" $NetBSD: boot.8,v 1.4 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1999 Christopher G. Demetriou
 .\" All rights reserved.
-.\" 
+.\"
 .\" Redistribution and use in source and binary forms, with or without
 .\" modification, are permitted provided that the following conditions
 .\" are met:
@@ -18,7 +18,7 @@
 .\"          information about NetBSD.
 .\" 4. The name of the author may not be used to endorse or promote products
 .\"    derived from this software without specific prior written permission.
-.\" 
+.\"
 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@@ -29,7 +29,7 @@
 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\" 
+.\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
 .\"
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/man8.alpha/installboot.8
--- a/share/man/man8/man8.alpha/installboot.8   Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/man8.alpha/installboot.8   Wed Sep 05 23:53:22 2001 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: installboot.8,v 1.17 2000/06/14 17:25:48 cgd Exp $
+.\" $NetBSD: installboot.8,v 1.18 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1999 Christopher G. Demetriou
 .\" All rights reserved.
-.\" 
+.\"
 .\" Redistribution and use in source and binary forms, with or without
 .\" modification, are permitted provided that the following conditions
 .\" are met:
@@ -18,7 +18,7 @@
 .\"          information about NetBSD.
 .\" 4. The name of the author may not be used to endorse or promote products
 .\"    derived from this software without specific prior written permission.
-.\" 
+.\"
 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@@ -29,7 +29,7 @@
 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\" 
+.\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
 .Dd April 3, 1999
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/man8.alpha/mkbootimage.8
--- a/share/man/man8/man8.alpha/mkbootimage.8   Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/man8.alpha/mkbootimage.8   Wed Sep 05 23:53:22 2001 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: mkbootimage.8,v 1.4 2000/06/14 17:25:49 cgd Exp $
+.\" $NetBSD: mkbootimage.8,v 1.5 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1999 Christopher G. Demetriou
 .\" All rights reserved.
-.\" 
+.\"
 .\" Redistribution and use in source and binary forms, with or without
 .\" modification, are permitted provided that the following conditions
 .\" are met:
@@ -18,7 +18,7 @@
 .\"          information about NetBSD.
 .\" 4. The name of the author may not be used to endorse or promote products
 .\"    derived from this software without specific prior written permission.
-.\" 
+.\"
 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@@ -29,7 +29,7 @@
 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\" 
+.\"
 .\" <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
 .\"
 .Dd April 3, 1999
diff -r d3c44aa8e73d -r a03ae7b5f20e share/man/man8/man8.alpha/setnetbootinfo.8
--- a/share/man/man8/man8.alpha/setnetbootinfo.8        Wed Sep 05 23:51:53 2001 +0000
+++ b/share/man/man8/man8.alpha/setnetbootinfo.8        Wed Sep 05 23:53:22 2001 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: setnetbootinfo.8,v 1.9 2000/06/14 17:25:49 cgd Exp $
+.\" $NetBSD: setnetbootinfo.8,v 1.10 2001/09/05 23:53:22 wiz Exp $
 .\"
 .\" Copyright (c) 1997, 1999 Christopher G. Demetriou
 .\" All rights reserved.
-.\" 
+.\"
 .\" Redistribution and use in source and binary forms, with or without
 .\" modification, are permitted provided that the following conditions
 .\" are met:
@@ -18,7 +18,7 @@
 .\"          information about NetBSD.
 .\" 4. The name of the author may not be used to endorse or promote products
 .\"    derived from this software without specific prior written permission.
-.\" 
+.\"
 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
@@ -29,7 +29,7 @@
 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF



Home | Main Index | Thread Index | Old Index