BSD 4_3_Net_2 release
[unix-history] / usr / src / usr.bin / mkstr / mkstr.1
index 2998eee..bc5fc30 100644 (file)
@@ -1,14 +1,39 @@
 .\" Copyright (c) 1980, 1990 The Regents of the University of California.
 .\" All rights reserved.
 .\"
 .\" Copyright (c) 1980, 1990 The Regents of the University of California.
 .\" All rights reserved.
 .\"
-.\" %sccs.include.redist.man%
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"    notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"    notice, this list of conditions and the following disclaimer in the
+.\"    documentation and/or other materials provided with the distribution.
+.\" 3. All advertising materials mentioning features or use of this software
+.\"    must display the following acknowledgement:
+.\"    This product includes software developed by the University of
+.\"    California, Berkeley and its contributors.
+.\" 4. Neither the name of the University nor the names of its contributors
+.\"    may be used to endorse or promote products derived from this software
+.\"    without specific prior written permission.
 .\"
 .\"
-.\"     @(#)mkstr.1    6.5 (Berkeley) %G%
+.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY 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.
 .\"
 .\"
-.Vx
-.Vx
-.Dd 
+.\"     @(#)mkstr.1    6.6 (Berkeley) 5/9/91
+.\"
+.Dd May 9, 1991
 .Dt MKSTR 1
 .Dt MKSTR 1
+.Os
 .Sh NAME
 .Nm mkstr
 .Nd create an error message file by massaging C source
 .Sh NAME
 .Nm mkstr
 .Nd create an error message file by massaging C source
@@ -25,7 +50,9 @@ file.
 The intent of
 .Nm mkstr
 was to reduce the size of large programs and
 The intent of
 .Nm mkstr
 was to reduce the size of large programs and
-reduce swapping (see BUGS section below).
+reduce swapping (see
+.Sx BUGS
+section below).
 .Pp
 .Nm Mkstr
 processes each of the specified
 .Pp
 .Nm Mkstr
 processes each of the specified
@@ -37,25 +64,26 @@ and the original name.
 A typical usage of
 .Nm mkstr
 is
 A typical usage of
 .Nm mkstr
 is
-.Pp
-.Dl mkstr pistrings xx *.c
+.Bd -literal -offset indent
+mkstr pistrings xx *.c
+.Ed
 .Pp
 This command causes all the error messages from the C source
 files in the current directory to be placed in the file
 .Ar pistrings
 and restructured copies of the sources to be placed in
 files whose names are prefixed with
 .Pp
 This command causes all the error messages from the C source
 files in the current directory to be placed in the file
 .Ar pistrings
 and restructured copies of the sources to be placed in
 files whose names are prefixed with
-.Ar xx .
+.Ar \&xx .
 .Pp
 Options:
 .Pp
 Options:
-.Tw Ds
-.Tp Fl
+.Bl -tag -width indent
+.It Fl
 Error messages are placed at the end of the specified
 message file for recompiling part of a large
 .Nm mkstr
 ed
 program.
 Error messages are placed at the end of the specified
 message file for recompiling part of a large
 .Nm mkstr
 ed
 program.
-.Tp
+.El
 .Pp
 .Nm mkstr
 finds error messages in the source by
 .Pp
 .Nm mkstr
 finds error messages in the source by
@@ -69,7 +97,7 @@ in the message file followed by a null character and a new-line character;
 The new source is restructured with
 .Xr lseek 2
 pointers into the error message file for retrieval.
 The new source is restructured with
 .Xr lseek 2
 pointers into the error message file for retrieval.
-.Ds I
+.Bd -literal -offset indent
 char efilname = "/usr/lib/pi_strings";
 int efil = -1;
 
 char efilname = "/usr/lib/pi_strings";
 int efil = -1;
 
@@ -89,20 +117,21 @@ oops:
                goto oops;
        printf(buf, a2, a3, a4);
 }
                goto oops;
        printf(buf, a2, a3, a4);
 }
-.De
+.Ed
 .Sh SEE ALSO
 .Xr lseek 2 ,
 .Xr xstr 1
 .Sh HISTORY
 .Nm Mkstr
 .Sh SEE ALSO
 .Xr lseek 2 ,
 .Xr xstr 1
 .Sh HISTORY
 .Nm Mkstr
-appeared in 3 BSD.
+appeared in
+.Bx 3.0 .
 .Sh BUGS
 .Nm mkstr
 was intended for the limited architecture of the PDP 11 family.
 .Sh BUGS
 .Nm mkstr
 was intended for the limited architecture of the PDP 11 family.
-Very few programs in 4.4 BSD actually use it. The pascal interpreter,
-.Xr pi 1
+Very few programs actually use it. The pascal interpreter,
+.Xr \&pi 1
 and the editor,
 and the editor,
-.Xr ex 1
+.Xr \&ex 1
 are two programs that are built this way.
 It is not an efficient method, the error messages
 should be stored in the program text.
 are two programs that are built this way.
 It is not an efficient method, the error messages
 should be stored in the program text.