patch(1): Fix typo.
[dragonfly.git] / usr.bin / checknr / checknr.1
1 .\" Copyright (c) 1980, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)checknr.1   8.1 (Berkeley) 6/6/93
33 .\" $FreeBSD: src/usr.bin/checknr/checknr.1,v 1.5.2.5 2002/07/15 04:29:39 keramida Exp $
34 .\"
35 .Dd June 6, 1993
36 .Dt CHECKNR 1
37 .Os
38 .Sh NAME
39 .Nm checknr
40 .Nd check nroff/troff files
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl fs
44 .Op Fl a Ns Ar \&.x1.y1.x2.y2. ... \&.xn.yn
45 .Op Fl c Ns Ar \&.x1.x2.x3 ... \&.xn
46 .Ar file
47 .Sh DESCRIPTION
48 The
49 .Nm
50 utility checks a list of
51 .Xr nroff 1
52 or
53 .Xr troff 1
54 input files for certain kinds of errors
55 involving mismatched opening and closing delimiters
56 and unknown commands.
57 If no files are specified,
58 .Nm
59 checks the standard input.
60 .Pp
61 The following options are available:
62 .Bl -tag -width indent
63 .It Fl a
64 Add additional pairs of macros to the list of known macros.
65 This must be followed by groups of six characters, each group defining
66 a pair of macros.
67 The six characters are
68 a period,
69 the first macro name,
70 another period,
71 and the second macro name.
72 For example, to define a pair .BS and .ES, use
73 .Sq Li \-a.BS.ES
74 .It Fl c
75 Define commands which would otherwise be complained about
76 as undefined.
77 .It Fl f
78 Request
79 .Nm
80 to ignore
81 .Ql \ef
82 font changes.
83 .It Fl s
84 Ignore
85 .Ql \es
86 size changes.
87 .El
88 .Pp
89 Delimiters checked are:
90 .Bl -enum
91 .It
92 Font changes using \efx ... \efP.
93 .It
94 Size changes using \esx ... \es0.
95 .It
96 Macros that come in open ... close forms, for example,
97 the .TS and .TE macros which must always come in pairs.
98 .El
99 .Pp
100 The
101 .Nm
102 utility is intended for use on documents that are prepared with
103 .Nm
104 in mind.
105 It expects a certain document writing style for
106 .Ql \ef
107 and
108 .Ql \es
109 commands,
110 in that each
111 .Ql \efx
112 must be terminated with
113 .Ql \efP
114 and
115 each
116 .Ql \esx
117 must be terminated with
118 .Ql \es0 .
119 While it will work to directly go into the next font or explicitly
120 specify the original font or point size,
121 and many existing documents actually do this,
122 such a practice will produce complaints from
123 .Nm .
124 Since it is probably better to use the
125 .Ql \efP
126 and
127 .Ql \es0
128 forms anyway,
129 you should think of this as a contribution to your document
130 preparation style.
131 .Pp
132 The
133 .Nm
134 utility knows about the
135 .Xr ms 7
136 and
137 .Xr me 7
138 macro packages.
139 .Sh DIAGNOSTICS
140 .Bd -ragged -compact
141 Complaints about unmatched delimiters.
142 Complaints about unrecognized commands.
143 Various complaints about the syntax of commands.
144 .Ed
145 .Sh SEE ALSO
146 .Xr nroff 1 ,
147 .Xr troff 1 ,
148 .Xr me 7 ,
149 .Xr ms 7
150 .\" .Xr checkeq 1 ,
151 .Sh HISTORY
152 The
153 .Nm
154 command appeared in
155 .Bx 4.0 .
156 .Sh BUGS
157 There is no way to define a 1 character macro name using
158 .Fl a .
159 .Pp
160 Does not correctly recognize certain reasonable constructs,
161 such as conditionals.