Index: head/contrib/groff/man/groff_out.man =================================================================== --- head/contrib/groff/man/groff_out.man (revision 75588) +++ head/contrib/groff/man/groff_out.man (revision 75589) @@ -1,240 +1,255 @@ '\" e .\" The above line should force the use of eqn as a preprocessor .ig -Copyright (C) 1989-2000 Free Software Foundation, Inc. +Copyright (C) 1989-2000, 2001 Free Software Foundation, Inc. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in the original English. $FreeBSD$ .. .\" This man page must be preprocessed with eqn. .ie \n(.g .ds ic \/ .el .ds ic \^ .TH GROFF_OUT @MAN5EXT@ "@MDATE@" "Groff Version @VERSION@" .SH NAME groff_out \- groff intermediate output format .SH DESCRIPTION This manual page describes the format output by GNU troff. The output format used by GNU troff is very similar to that used by Unix device-independent troff. Only the differences are documented here. .LP The argument to the .B s command is in scaled points (units of .IR points/ n , where .I n is the argument to the .B sizescale command in the DESC file.) The argument to the .B x\ Height command is also in scaled points. .LP The first three output commands are guaranteed to be: .IP .BI x\ T\ device .br .BI x\ res\ n\ h\ v .br .B x init .LP If the .B tcommand line is present in the DESC file, troff will use the following two commands .TP .BI t xxx .I xxx is any sequence of characters terminated by a space or a newline; the first character should be printed at the current position, the the current horizontal position should be increased by the width of the first character, and so on for each character. The width of the character is that given in the font file, appropriately scaled for the current point size, and rounded so that it is a multiple of the horizontal resolution. Special characters cannot be printed using this command. .TP .BI u n\ xxx This is same as the .B t command except that after printing each character, the current horizontal position is increased by the sum of the width of that character and .IR n . .LP Note that single characters can have the eighth bit set, as can the names of fonts and special characters. .LP The names of characters and fonts can be of arbitrary length; drivers should not assume that they will be only two characters long. .LP When a character is to be printed, that character will always be in the current font. Unlike device-independent troff, it is not necessary for drivers to search special fonts to find a character. +.LP +The +.B x +device control command has been extended. +.TP +\fBx u \fIn\fR +If +.I n +is\~1, start underlining of spaces. +If +.I n +is\~0, stop underlining of spaces. +This is needed for the +.B cu +request in nroff mode and is ignored otherwise. .LP The .B D drawing command has been extended. These extensions will not be used by GNU pic if the .B \-n option is given. .TP \fBDf \fIn\fR\*(ic\en Set the shade of gray to be used for filling solid objects to .IR n ; .I n must be an integer between 0 and 1000, where 0 corresponds solid white and 1000 to solid black, and values in between correspond to intermediate shades of gray. This applies only to solid circles, solid ellipses and solid polygons. By default, a level of 1000 will be used. Whatever color a solid object has, it should completely obscure everything beneath it. A value greater than 1000 or less than 0 can also be used: this means fill with the shade of gray that is currently being used for lines and text. Normally this will be black, but some drivers may provide a way of changing this. .TP \fBDC \fId\fR\*(ic\en Draw a solid circle with a diameter of .I d with the leftmost point at the current position. .TP \fBDE \fIdx dy\fR\*(ic\en Draw a solid ellipse with a horizontal diameter of .I dx and a vertical diameter of .I dy with the leftmost point at the current position. .EQ delim $$ .EN .TP \fBDp\fR $dx sub 1$ $dy sub 1$ $dx sub 2$ $dy sub 2$ $...$ $dx sub n$ $dy sub n$\en Draw a polygon with, for $i = 1 ,..., n+1$, the .IR i -th vertex at the current position $+ sum from j=1 to i-1 ( dx sub j , dy sub j )$. At the moment, GNU pic only uses this command to generate triangles and rectangles. .TP \fBDP\fR $dx sub 1$ $dy sub 1$ $dx sub 2$ $dy sub 2$ $...$ $dx sub n$ $dy sub n$\en Like .B Dp but draw a solid rather than outlined polygon. .TP \fBDt \fIn\fR\*(ic\en Set the current line thickness to .I n machine units. Traditionally Unix troff drivers use a line thickness proportional to the current point size; drivers should continue to do this if no .B Dt command has been given, or if a .B Dt command has been given with a negative value of .IR n . A zero value of .I n selects the smallest available line thickness. .LP A difficulty arises in how the current position should be changed after the execution of these commands. This is not of great importance since the code generated by GNU pic does not depend on this. Given a drawing command of the form .IP \fB\eD\(fm\fIc\fR $x sub 1$ $y sub 1$ $x sub 2$ $y sub 2$ $...$ $x sub n$ $y sub n$\(fm .LP where .I c is not one of .BR c , .BR e , .BR l , .B a or .BR ~ , Unix troff will treat each of the $x sub i$ as a horizontal quantity, and each of the $y sub i$ as a vertical quantity and will assume that the width of the drawn object is $sum from i=1 to n x sub i$, and that the height is $sum from i=1 to n y sub i$. (The assumption about the height can be seen by examining the .B st and .B sb registers after using such a .B D command in a \ew escape sequence.) This rule also holds for all the original drawing commands with the exception of .BR De . For the sake of compatibility GNU troff also follows this rule, even though it produces an ugly result in the case of the .BR Df , .BR Dt , and, to a lesser extent, .B DE commands. Thus after executing a .B D command of the form .IP \fBD\fIc\fR $x sub 1$ $y sub 1$ $x sub 2$ $y sub 2$ $...$ $x sub n$ $y sub n$\en .LP the current position should be increased by $( sum from i=1 to n x sub i , sum from i=1 to n y sub i )$. .LP There is a continuation convention which permits the argument to the .B x\ X command to contain newlines: when outputting the argument to the .B x\ X command, GNU troff will follow each newline in the argument with a .B + character (as usual, it will terminate the entire argument with a newline); thus if the line after the line containing the .B x\ X command starts with .BR + , then the newline ending the line containing the .B x\ X command should be treated as part of the argument to the .B x\ X command, the .B + should be ignored, and the part of the line following the .B + should be treated like the part of the line following the .B x\ X command. .SH "SEE ALSO" .BR groff_font (@MAN5EXT@) .\" .\" Local Variables: .\" mode: nroff .\" End: Index: head/contrib/groff/tmac/doc-common =================================================================== --- head/contrib/groff/tmac/doc-common (revision 75588) +++ head/contrib/groff/tmac/doc-common (revision 75589) @@ -1,492 +1,1017 @@ .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" 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. +.\" 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. .\" .\" 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. .\" .\" @(#)doc-common 8.1 (Berkeley) 06/08/93 .\" $FreeBSD$ .\" .\" %beginstrip% +. +. +.\" Macro Identifiers. For each user macro a corresponding register with +.\" the same name must exist. Its value must not be zero. +. .nr %A 1 +.nr %B 1 +.nr %D 1 .nr %J 1 .nr %N 1 .nr %O 1 +.nr %P 1 +.nr %Q 1 .nr %R 1 .nr %T 1 .nr %V 1 -.nr Ad 12n .nr Ac 3 +.nr Ad 12n +.nr An 12n .nr Ao 12n .nr Ap 2 -.nr An 12n .nr Aq 12n .nr Ar 12n +.nr At 1 .nr Bc 3 +.nr Bf 8n\" ? +.nr Bk 8n\" ? .nr Bl 1 .nr Bo 12n .nr Bq 12n -.nr Bx 12n +.nr Brc 3 +.nr Bro 12n +.nr Brq 12n +.nr Bsx 1 +.nr Bt 8n\" ? +.nr Bx 1 .nr Cd 12n .nr Cm 10n +.nr D1 8n\" ? .nr Dc 3 -.nr Do 10n +.nr Dl 8n\" ? +.nr Dt 8n\" ? +.nr Do 12n .nr Dq 12n -.nr Ds 6n -.nr Dq 12n +.nr Ds 6n\" many manpages still use this as a -width value .nr Dv 12n .nr Ec 3 +.nr Ef 8n\" ? +.nr Ek 8n\" ? .nr El 1 +.nr Em 10n +.nr En 12n .nr Eo 12n .nr Eq 12n -.nr Em 10n .nr Er 17n +.nr Es 12n .nr Ev 15n .nr Fa 12n -.nr Fx 12n -.nr Fl 10n .nr Fc 3 -.nr Fo 16n +.nr Fd 12n\" ? +.nr Fl 10n .nr Fn 16n -.nr I1 6n -.nr I2 12n -.nr I3 18n +.nr Fo 16n +.nr Fr 12n\" ? +.nr Ft 8n\" ? +.nr Fx 1 .nr Ic 10n +.nr In 12n\" ? +.nr It 8n\" ? +.nr Lb 11n .nr Li 16n +.nr Lk 6n\" ? +.nr Lp 8n\" ? +.nr Me 6n .nr Ms 6n +.nr Mt 6n\" ? +.nr Nd 8n\" ? .nr Nm 10n .nr No 12n .nr Ns 2 -.nr Oo 10n +.nr Nx 1 .nr Oc 3 +.nr Oo 10n .nr Op 14n +.nr Os 6n\" ? +.nr Ox 1 .nr Pa 32n -.nr Pf 12n .nr Pc 3 +.nr Pf 12n .nr Po 12n +.nr Pp 8n\" ? .nr Pq 12n -.nr Ql 16n .nr Qc 3 +.nr Ql 16n .nr Qo 12n .nr Qq 12n +.nr Rv 1 .nr Sc 3 +.nr Sh 8n +.nr Sm 8n\" ? .nr So 12n .nr Sq 12n -.nr Sy 6n +.nr Ss 8n +.nr St 8n\" ? .nr Sx 16n -.nr Rv 1 +.nr Sy 6n +.nr Ta 2 .nr Tn 10n -.nr Ta 1 -.nr Tv 1 -.nr Tx 22n -.nr Ux 10n +.nr Ud 8n\" ? +.nr Ux 1 .nr Va 12n +.nr Vt 8n\" ? .nr Xc 3 .nr Xo 1 .nr Xr 10n -.nr Yr \n(yr+1900 -.ds sV \& \& -.ds hV \&\ \& -.ds iV \& \& -.ds tV \&\\t\& -.\" Punctuation values (3 = closing punctuation, 4 = opening) -.nr z. 3 -.nr z, 3 -.nr z: 3 -.nr z; 3 -.nr z? 3 -.nr z! 3 -.nr z( 4 -.nr z) 3 -.nr z[ 4 -.nr z] 3 -.\" Matching pairs -.ds z( z) -.ds z[ z] -.ds z< z> -.\" This is disgusting, troff not parse ``if'' stmt properly -.nr z0 0 -.nr z1 0 -.nr z2 0 -.nr z3 0 -.nr z4 0 -.nr z5 0 -.nr z6 0 -.nr z7 0 -.nr z8 0 -.nr z9 0 -.nr z# 0 -.\" Header assembly macros +. +. +.\" requests which must be processed after the closing delimiter of `Op' +.\" and friends +.ds doc-after-Ao +.ds doc-after-Bo +.ds doc-after-Bro +.ds doc-after-Do +.ds doc-after-Eo +.ds doc-after-Fo +.ds doc-after-Ns +.ds doc-after-Oo +.ds doc-after-Po +.ds doc-after-Qo +.ds doc-after-So +.ds doc-after-Xo +. +. +.nr doc-display-indent 6n +. +. +.\" space strings +. +.ds doc-soft-space " \" +.ds doc-hard-space \~ +.ds doc-tab \t +. +. +.eo +. +. +.\" punctuation values (suffix=3, prefix = 4) +. +.nr doc-punct. 3 +.nr doc-punct, 3 +.nr doc-punct: 3 +.nr doc-punct; 3 +.nr doc-punct( 4 +.nr doc-punct) 3 +.nr doc-punct[ 4 +.nr doc-punct] 3 +.nr doc-punct? 3 +.nr doc-punct! 3 +. +. +.\" header assembly macros +. +.\" NS doc-document-title global string +.\" NS the title of the manual page +. +.ds doc-document-title UNTITLED +. +. +.\" NS doc-volume global string +.\" NS the volume where the manual page belongs to +. +.ds doc-volume LOCAL +. +. +.\" NS doc-section global string +.\" NS the manual section +. +.ds doc-section Null +. +. +.\" NS Dt user macro (not parsed, not callable) +.\" NS document title +.\" NS +.\" NS modifies: +.\" NS doc-document-title +.\" NS doc-section +.\" NS doc-volume +.\" NS +.\" NS local variables: +.\" NS doc-volume-as-XXX +.\" NS doc-volume-ds-XXX +.\" NS +.\" NS width register `Dt' set above +. +.\" an alternative, more detailed scheme for naming the manual sections +.\" +.ds doc-volume-ds-1 System General Commands Manual +.ds doc-volume-ds-2 System Calls Manual +.ds doc-volume-ds-3 System Library Functions Manual +.ds doc-volume-ds-4 System Kernel Interfaces Manual +.ds doc-volume-ds-5 System File Formats Manual +.ds doc-volume-ds-6 System Games Manual +.ds doc-volume-ds-7 System Miscellaneous Information Manual +.ds doc-volume-ds-8 System Manager's Manual +.ds doc-volume-ds-9 System Kernel Developer's Manual +. +.ds doc-volume-ds-USD System User's Supplementary Documents +.ds doc-volume-ds-PS1 System Programmer's Supplementary Documents +.ds doc-volume-ds-AMD System Ancestral Manual Documents +.ds doc-volume-ds-SMM System Manager's Manual +.ds doc-volume-ds-URM System Reference Manual +.ds doc-volume-ds-PRM System Programmer's Manual +.ds doc-volume-ds-KM System Kernel Manual +.ds doc-volume-ds-IND System Manual Master Index +.ds doc-volume-ds-LOCAL System Local Manual +.ds doc-volume-ds-CON System Contributed Software Manual +. +.als doc-volume-ds-MMI doc-volume-ds-IND +.als doc-volume-ds-LOC doc-volume-ds-LOCAL +. +.ds doc-volume-as-alpha (Alpha Architecture) +.als doc-volume-as-Alpha doc-volume-as-alpha +.ds doc-volume-as-amiga (Amiga Architecture) +.ds doc-volume-as-arc (Arc Architecture) +.ds doc-volume-as-arm26 (ARM26 Architecture) +.ds doc-volume-as-arm32 (ARM32 Architecture) +.ds doc-volume-as-atari (Atari Architecture) +.ds doc-volume-as-bebox (BEbox Architecture) +.ds doc-volume-as-cobalt (Cobalt Architecture) +.ds doc-volume-as-evbsh3 (Evbsh3 Architecture) +.ds doc-volume-as-hp300 (HP300 Architecture) +.ds doc-volume-as-hpcmips (HPcmips Architecture) +.ds doc-volume-as-i386 (i386 Architecture) +.ds doc-volume-as-luna68k (luna68k Architecture) +.ds doc-volume-as-m68k (m68k Architecture) +.ds doc-volume-as-mac68k (mac68k Architecture) +.ds doc-volume-as-macppc (macppc Architecture) +.ds doc-volume-as-mips (MIPS Architecture) +.ds doc-volume-as-mmeye (mmeye Architecture) +.ds doc-volume-as-mvme68k (mvme68k Architecture) +.ds doc-volume-as-news68k (news68k Architecture) +.ds doc-volume-as-newsmips (newsmips Architecture) +.ds doc-volume-as-next68k (next68k Architecture) +.ds doc-volume-as-ofppc (ofppc Architecture) +.ds doc-volume-as-pc532 (pc532 Architecture) +.ds doc-volume-as-pmax (pmax Architecture) +.ds doc-volume-as-powerpc (powerpc Architecture) +.ds doc-volume-as-prep (prep Architecture) +.ds doc-volume-as-sgimips (sgimips Architecture) +.ds doc-volume-as-sh3 (sh3 Architecture) +.ds doc-volume-as-sparc (SPARC Architecture) +.ds doc-volume-as-sparc64 (sparc64 Architecture) +.ds doc-volume-as-sun3 (sun3 Architecture) +.ds doc-volume-as-tahoe (Tahoe Architecture) +.ds doc-volume-as-vax (VAX Architecture) +.ds doc-volume-as-x68k (x68k Architecture) +. .de Dt -.ds dT UNTITLED -.ds vT LOCAL -.ds cH Null -.if !"\\$1"" .ds dT \\$1 -.if !"\\$2"" \{\ -. ds cH \\$2 -.\" . if "\\$3"" \{\ -. if \\$2>=1 .if \\$2<=9 \{\ -. ds vT FreeBSD Reference Manual -. if "\\$2"1" .ds vT FreeBSD General Commands Manual -. if "\\$2"2" .ds vT FreeBSD System Calls Manual -. if "\\$2"3" .ds vT FreeBSD Library Functions Manual -. if "\\$2"4" .ds vT FreeBSD Kernel Interfaces Manual -. if "\\$2"5" .ds vT FreeBSD File Formats Manual -. if "\\$2"6" .ds vT FreeBSD Games Manual -. if "\\$2"7" .ds vT FreeBSD Miscellaneous Information Manual -. if "\\$2"8" .ds vT FreeBSD System Manager's Manual -. if "\\$2"9" .ds vT FreeBSD Kernel Developer's Manual -. nr sN \\$2 -. \} -. if "\\$2"unass" .ds vT DRAFT -. if "\\$2"draft" .ds vT DRAFT -. if "\\$2"paper" .ds vT UNTITLED -.\" . \} -.\} -.if !"\\$3"" \{\ -. if "\\$3"USD" .ds vT FreeBSD User's Supplementary Documents -. if "\\$3"PS1" .ds vT FreeBSD Programmers's Supplementary Documents -. if "\\$3"AMD" .ds vT FreeBSD Ancestral Manual Documents -. if "\\$3"SMM" .ds vT FreeBSD System Manager's Manual -. if "\\$3"URM" .ds vT FreeBSD Reference Manual -. if "\\$3"PRM" .ds vT FreeBSD Programmers's Manual -. if "\\$3"IND" .ds vT FreeBSD Manual Master Index -.\" . if "\\$3"CON" .ds vT FreeBSD Contributed Software Manual -.\" . if "\\$3"IMP" .ds vT FreeBSD Implementation Notes -.\" . if "\\$3"HOW" .ds vT FreeBSD How Pocket Manual -. if "\\$3"LOCAL" .ds vT FreeBSD Local Manual -. if "\\$3"tahoe" .as vT \ (Tahoe Architecture) -. if "\\$3"vax" .as vT \ (VAX Architecture) -. if "\\$3"hp300" .as vT \ (HP300 Architecture) -. if "\\$3"i386" .as vT \ (i386 Architecture) -. if "\\$3"Alpha" .as vT \ (Alpha Architecture) -. if "\\*(vT"LOCAL" .ds vT \\$3 -.\} +. \" reset default arguments +. ds doc-document-title UNTITLED +. ds doc-volume LOCAL +. ds doc-section Null +. +. if !"\$1"" \ +. ds doc-document-title "\$1 +. +. if !"\$2"" \{\ +. ds doc-section \$2 +. ie \B\$2 \{\ +. if ((\$2 >= 1) & (\$2 <= 9)) \{\ +. ds doc-volume "\*[doc-volume-ds-URM] +. ie d doc-volume-ds-\$2 \ +. ds doc-volume "\*[doc-volume-ds-\$2] +. el \{ .ie ((\$2 > 1) & (\$2 < 6)) \ +. ds doc-volume "\*[doc-volume-ds-PRM] +. el \{ .ie (\$2 == 8) \ +. ds doc-volume "\*[doc-volume-ds-SMM] +. el \{ .if (\$2 == 9) \ +. ds doc-volume "\*[doc-volume-ds-KM] +. \}\}\}\}\} +. el \{ .ie "\$2"unass" .ds doc-volume DRAFT +. el \{ .ie "\$2"draft" .ds doc-volume DRAFT +. el \{ .ie "\$2"paper" .ds doc-volume UNTITLED +. el \ +. tm mdoc warning: .Dt: unknown section `\$2' (#\n[.c]) +. \}\}\}\} +. +. if \A\$3 \{\ +. if d doc-volume-ds-\$3 \ +. ds doc-volume "\*[doc-volume-ds-\$3] +. +. if d doc-volume-as-\$3 \ +. as doc-volume " \*[doc-volume-as-\$3] +. \} +. +. if !"\$3"" \ +. if "\*[doc-volume]"LOCAL" \ +. ds doc-volume \$3 .. -.\" NS Os macro - Operating System (behaviour changes after first call) -.\" . ds vT \f(CODRAFT\fP\ \ \-\-\ \ \\*(vT\ \ \-\-\ \ \f(CODRAFT -.\" . ds dD \f(CODRAFT\fP\ \ \-\-\ \ \\*(dD\ \ \-\-\ \ \f(CODRAFT -.\" .ds vT \s+4\f(CODRAFT\fP\s-4\ \ \-\-\ \ \\*(vT\ \ \-\-\ \ \s+4\f(CODRAFT\s-4 -.\" .ds dD \s+4\f(CODRAFT\fP\s-4\ \ \-\-\ \ \\*(dD\ \ \-\-\ \ \s+4\f(CODRAFT\s-4 +. +. +.\" NS doc-operating-system global string +.\" NS the exact version of the operating system +.\" NS +.\" NS override this in `mdoc.local', if necessary +. +.ds doc-operating-system BSD +. +. +.\" NS Os user macro (not parsed, not callable) +.\" NS operating system +.\" NS +.\" NS modifies: +.\" NS doc-operating-system +.\" NS +.\" NS local variables: +.\" NS doc-operating-system-XXX-XXX +.\" NS +.\" NS width register `Os' set above +. +.ds doc-operating-system-ATT-7 7th\~Edition +.als doc-operating-system-ATT-7th doc-operating-system-ATT-7 +.ds doc-operating-system-ATT-3 System\~III +.als doc-operating-system-ATT-III doc-operating-system-ATT-3 +.ds doc-operating-system-ATT-V System\~V +.ds doc-operating-system-ATT-V.2 System\~V Release\~2 +.ds doc-operating-system-ATT-V.3 System\~V Release\~3 +.ds doc-operating-system-ATT-V.4 System\~V Release\~4 +. +.ds doc-operating-system-BSD-3 3rd\~Berkeley Distribution +.ds doc-operating-system-BSD-4 4th\~Berkeley Distribution +.ds doc-operating-system-BSD-4.1 4.1\~Berkeley Distribution +.ds doc-operating-system-BSD-4.2 4.2\~Berkeley Distribution +.ds doc-operating-system-BSD-4.3 4.3\~Berkeley Distribution +.ds doc-operating-system-BSD-4.3T 4.3-Tahoe Berkeley Distribution +.ds doc-operating-system-BSD-4.3R 4.3-Reno Berkeley Distribution +.als doc-operating-system-BSD-4.3t doc-operating-system-BSD-4.3T +.als doc-operating-system-BSD-4.3r doc-operating-system-BSD-4.3R +.ds doc-operating-system-BSD-4.4 4.4BSD +. +.ds doc-operating-system-NetBSD-0.8 0.8 +.ds doc-operating-system-NetBSD-0.8a 0.8A +.ds doc-operating-system-NetBSD-0.9 0.9 +.ds doc-operating-system-NetBSD-0.9a 0.9A +.ds doc-operating-system-NetBSD-1.0 1.0 +.ds doc-operating-system-NetBSD-1.0a 1.0A +.ds doc-operating-system-NetBSD-1.1 1.1 +.ds doc-operating-system-NetBSD-1.2 1.2 +.ds doc-operating-system-NetBSD-1.2a 1.2A +.ds doc-operating-system-NetBSD-1.2b 1.2B +.ds doc-operating-system-NetBSD-1.2c 1.2C +.ds doc-operating-system-NetBSD-1.2d 1.2D +.ds doc-operating-system-NetBSD-1.2e 1.2E +.ds doc-operating-system-NetBSD-1.3 1.3 +.ds doc-operating-system-NetBSD-1.3a 1.3A +.ds doc-operating-system-NetBSD-1.4 1.4 +.ds doc-operating-system-NetBSD-1.5 1.5 +. +.ds doc-operating-system-FreeBSD-1.0 1.0 +.ds doc-operating-system-FreeBSD-1.1 1.1 +.ds doc-operating-system-FreeBSD-1.1.5 1.1.5 +.ds doc-operating-system-FreeBSD-1.1.5.1 1.1.5.1 +.ds doc-operating-system-FreeBSD-2.0 2.0 +.ds doc-operating-system-FreeBSD-2.0.5 2.0.5 +.ds doc-operating-system-FreeBSD-2.1 2.1 +.ds doc-operating-system-FreeBSD-2.1.5 2.1.5 +.ds doc-operating-system-FreeBSD-2.1.6 2.1.6 +.ds doc-operating-system-FreeBSD-2.1.7 2.1.7 +.ds doc-operating-system-FreeBSD-2.2 2.2 +.ds doc-operating-system-FreeBSD-2.2.1 2.2.1 +.ds doc-operating-system-FreeBSD-2.2.2 2.2.2 +.ds doc-operating-system-FreeBSD-2.2.5 2.2.5 +.ds doc-operating-system-FreeBSD-2.2.6 2.2.6 +.ds doc-operating-system-FreeBSD-2.2.7 2.2.7 +.ds doc-operating-system-FreeBSD-2.2.8 2.2.8 +.ds doc-operating-system-FreeBSD-3.0 3.0 +.ds doc-operating-system-FreeBSD-3.1 3.1 +.ds doc-operating-system-FreeBSD-3.2 3.2 +.ds doc-operating-system-FreeBSD-3.3 3.3 +.ds doc-operating-system-FreeBSD-3.4 3.4 +.ds doc-operating-system-FreeBSD-3.5 3.5 +.ds doc-operating-system-FreeBSD-4.0 4.0 +.ds doc-operating-system-FreeBSD-4.1 4.1 +.ds doc-operating-system-FreeBSD-4.1.1 4.1.1 +.ds doc-operating-system-FreeBSD-4.2 4.2 +.ds doc-operating-system-FreeBSD-4.3 4.3 +.ds doc-operating-system-FreeBSD-5.0 5.0 +. .de Os -.ds oS Null -.if "\\$1"" .ds oS BSD -.if "\\$1"ATT" \{\ -. ds oS AT&T -. if "\\$2"" .as oS \0UNIX -. if "\\$2"7th" .as oS \07th Edition -. if "\\$2"7" .as oS \07th Edition -. if "\\$2"III" .as oS \0System III -. if "\\$2"3" .as oS \0System III -. if "\\$2"V" .as oS \0System V -. if "\\$2"V.2" .as oS \0System V Release 2 -. if "\\$2"V.3" .as oS \0System V Release 3 -. if "\\$2"V.4" .as oS \0System V Release 4 -.\} -.if "\\$1"BSD" \{\ -. if "\\$2"3" .ds oS 3rd Berkeley Distribution -. if "\\$2"4" .ds oS 4th Berkeley Distribution -. if "\\$2"4.1" .ds oS 4.1 Berkeley Distribution -. if "\\$2"4.2" .ds oS 4.2 Berkeley Distribution -. if "\\$2"4.3" .ds oS 4.3 Berkeley Distribution -. if "\\$2"4.3T" .ds oS 4.3-Tahoe Berkeley Distribution -. if "\\$2"4.3R" .ds oS 4.3-Reno Berkeley Distribution -. if "\\$2"4.3t" .ds oS 4.3-Tahoe Berkeley Distribution -. if "\\$2"4.3r" .ds oS 4.3-Reno Berkeley Distribution -. if "\\$2"4.4" .ds oS 4.4BSD -. if "\\*(oS"Null" .tm Unknown BSD version ``\\$2'' at line \\n(c. -.\} -.if "\\$1"FreeBSD" \{\ -. ie "\\$2"2" .ds oS FreeBSD 2.0 -. el .if !"\\$2"" .if !dFx*\\$2 .tm Unknown FreeBSD version ``\\$2'' at line \\n(c. -.\} -.if "\\*(oS"Null" \{\ -. ds oS \&\\$1 -. if !"\\$2"" .as oS \& \\$2 -.\} +. if "\$1"" \ +. return +. +. ie "\$1"ATT" \{\ +. ds doc-operating-system AT&T +. if \A\$2 \{\ +. ie d doc-operating-system-ATT-\$2 \ +. as doc-operating-system " \*[doc-operating-system-ATT-\$2] +. el \ +. as doc-operating-system " UNIX +. \}\} +. el \{ .ie "\$1"BSD" \{\ +. if \A\$2 \{\ +. ie d doc-operating-system-BSD-\$2 \ +. ds doc-operating-system "\*[doc-operating-system-BSD-\$2] +. el \ +. tm mdoc warning: .Os: Unknown BSD version `\$2' (#\n[.c]) +. \}\} +. el \{ .ie "\$1"FreeBSD" \{\ +. ds doc-operating-system FreeBSD +. if \A\$2 \{\ +. ie d doc-operating-system-FreeBSD-\$2 \ +. as doc-operating-system \~\*[doc-operating-system-FreeBSD-\$2] +. el \ +. tm mdoc warning: .Os: Unknown FreeBSD version `\$2' (#\n[.c]) +. \}\} +. el \{ .ie "\$1"NetBSD" \{\ +. ds doc-operating-system NetBSD +. if \A\$2 \{\ +. ie d doc-operating-system-NetBSD-\$2 \ +. as doc-operating-system \~\*[doc-operating-system-NetBSD-\$2] +. el \ +. tm mdoc warning: .Os: Unknown NetBSD version `\$2' (#\n[.c]) +. \}\} +. el \{\ +. ds doc-operating-system \$1 +. if !"\$2"" \ +. as doc-operating-system " \$2 +. \}\}\}\} .. +. +. +.\" NS doc-date-string global string +.\" NS the manual page date as set by `Dd' +. +.ds doc-date-string +. +. +.\" NS Dd user macro (not parsed, not callable) +.\" NS set document date +.\" NS +.\" NS modifies: +.\" NS doc-date-string +.\" NS +.\" NS local variables: +.\" NS doc-date-XXX +.\" NS +.\" NS width register `Dd' set above +. +.ds doc-date-1 January +.ds doc-date-2 February +.ds doc-date-3 March +.ds doc-date-4 April +.ds doc-date-5 May +.ds doc-date-6 June +.ds doc-date-7 July +.ds doc-date-8 August +.ds doc-date-9 September +.ds doc-date-10 October +.ds doc-date-11 November +.ds doc-date-12 December +. .de Dd -.if !"\\*(dD"" .nr gX 1 -.ie \\n(.$>0 \{\ -. ie \\n(.$==3 \{\ -. ds dD \\$1 \\$2 \\$3 -. \} -. el \{\ -. if "\\n(mo"1" .ds dD January -. if "\\n(mo"2" .ds dD February -. if "\\n(mo"3" .ds dD March -. if "\\n(mo"4" .ds dD April -. if "\\n(mo"5" .ds dD May -. if "\\n(mo"6" .ds dD June -. if "\\n(mo"7" .ds dD July -. if "\\n(mo"8" .ds dD August -. if "\\n(mo"9" .ds dD September -. if "\\n(mo"10" .ds dD October -. if "\\n(mo"11" .ds dD November -. if "\\n(mo"12" .ds dD December -. as dD \&\ \\n(dy, \\n(Yr -. \} -.\} -.el \{\ -. ds dD Epoch -.\} +. \" XXX: why do we need gX? +. if "\*[doc-date-string]"" \ +. nr gX 1 +. +. ie \n[.$] \{\ +. ie (\n[.$] == 3) \ +. ds doc-date-string \$1\~\$2 \$3 +. el \{\ +. ds doc-date-string "\*[doc-date-\n[mo]] +. as doc-date-string \~\n[dy], \n[year] +. \} +. \} +. el \ +. ds doc-date-string Epoch .. -.de hM -.ev 1 -.pL -.if !\\n(cR 'sp \\n(Hmu -.tl @\\*(Hs\\*(hT\fP@\\*(Vs\\*(vT\fP@\\*(Hs\\*(hT\fP@ -'sp \\n(Hmu -.ev +. +. +.\" NS doc-hyphen-flags global register +.\" NS the parameter for the `.hy' request +.\" NS +.\" NS override this in `mdoc.local', if necessary. +. +.nr doc-hyphen-flags 12 +. +. +.\" NS doc-header macro +.\" NS print page header +. +.de doc-header +. ev doc-env-dh +. doc-setup-page-layout +. if !\n[cR] \ +' sp \n[doc-header-space]u +. tl \*[doc-caption-font]\*[doc-header-string]\f[P]\*[doc-caption-font2]\*[doc-volume]\f[P]\*[doc-caption-font]\*[doc-header-string]\f[P] +' sp \n[doc-header-space]u +. ev .. -.de fM -.ie \\n(cR 'br -.el \{\ -. ev 1 -. pL -. if !\\n(cR \{\ -' sp \\n(Fmu -. tl @\\*(Hs\\*(oS\fP@\\*(Vs\\*(dD\fP@%@ -' bp -. \} -. ev -.\} +. +. +.\" NS doc-footer macro +.\" NS print page footer +. +.de doc-footer +. ie \n[cR] \ +' br +. el \{\ +. ev doc-caption-enviroment +. doc-setup-page-layout +' sp \n[doc-footer-space]u +. ie \n[D] \{\ +. ie o \ +. tl %\*[doc-caption-font2]\*[doc-date-string]\f[P]\*[doc-caption-font]\*[doc-operating-system]\f[P] +. el \ +. tl \*[doc-caption-font]\*[doc-operating-system]\f[P]\*[doc-caption-font2]\*[doc-date-string]\f[P]% +. \} +. el \ +. tl \*[doc-caption-font]\*[doc-operating-system]\f[P]\*[doc-caption-font2]\*[doc-date-string]\f[P]% +' bp +. ev +. \} .. -.de lM -.\" We may still have a partial line in the enviroment. If this is the case, -.\" and we happen to be on the last line of the page, the .fl will cause the -.\" page to be ejected and troff will immediately exit. If we're in nroff -.\" mode, this would be unfortunate, since we would never get a chance to -.\" output the footer. So we fudge the page length, to make sure that the -.\" last page is never ejected until we want it to be. -.if \\n(cR .pl +3v -.fl -.if \\n(cR \{\ -' sp -. tl @\\*(Hs\\*(oS\fP@\\*(Vs\\*(dD\fP@%@ -. pl \\n(nlu -.\} +. +. +.\" NS doc-end-macro macro +.\" NS finish output +. +.de doc-end-macro +. \" We may still have a partial line in the environment. If this is the +. \" case, and we happen to be on the last line of the page, the `.fl' +. \" request will cause the page to be ejected and troff will immediately +. \" exit. If we are in nroff mode, this would be unfortunate, since we +. \" would never get a chance to output the footer. So we fudge the page +. \" length to make sure that the last page is never ejected until we want +. \" it to be. +. +. if \n[cR] \ +. pl +3v +. fl +. +. if \n[doc-list-depth] \ +. tm mdoc warning: list open at EOF! A .Bl directive has no matching .El +. +. if \n[cR] \{\ +' sp +. tl \*[doc-caption-font]\*[doc-operating-system]\f[P]\*[doc-caption-font2]\*[doc-date-string]\f[P]\*[doc-caption-font]\*[doc-operating-system]\f[P] +. \" suppress empty lines after the footer +. pl \n[nl]u +. \} .. -.de Pp -.sp \\n(Ppu -.if !\\n(cR .ne 2 -.ns +. +. +.\" NS doc-paragraph macro +.\" NS insert a paragraph +. +.de doc-paragraph +. sp \n[doc-paragraph-space]u +. if !\n[cR] \ +. ne 2 +. ns .. -.de Lp -.Pp -.. +. +. +.\" NS Pp user macro (not parsed, not callable) +.\" NS new paragraph +.\" NS +.\" NS width register `Pp' set above +. +.als Pp doc-paragraph +. +. +.\" NS Lp user macro (not parsed, not callable) +.\" NS same as .Pp +.\" NS +.\" NS width register `Lp' set above +. +.als Lp doc-paragraph +. +. .de LP -.tm Not a \-mdoc command: .LP +. tm Not a \-mdoc command: .LP (#\n[.c]) .. +. +. .de PP -.tm Not a \-mdoc command: .PP +. tm Not a \-mdoc command: .PP (#\n[.c]) .. +. +. .de pp -.tm Not a \-mdoc command: .pp +. tm Not a \-mdoc command: .pp (#\n[.c]) .. +. +. +.de SH +. tm Not a \-mdoc command: .SH (#\n[.c]) +.. +. +. +.\" NS Nd user macro (not parsed, not callable) +.\" NS print name description +.\" NS +.\" NS width register `Nd' set above +. .de Nd -\&\-\& \\$1 \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 +. nop \- \$* .. +. +. +.\" NS doc-in-synopsis-section global register (bool) +.\" NS whether we are in the `synopsis' section +. +.nr doc-in-synopsis-section 0 +. +. +.\" NS doc-in-see-also-section global register (bool) +.\" NS whether we are in the `see also' section +. +.nr doc-in-see-also-section 0 +. +. +.\" NS doc-in-files-section global register (bool) +.\" NS whether we are in the `files' section +. +.nr doc-in-files-section 0 +. +. +.\" NS doc-in-authors-section global register (bool) +.\" NS whether we are in the `authors' section +. +.nr doc-in-authors-section 0 +. +. +.\" NS doc-first-parameter macro +.\" NS return first parameter +.\" NS +.\" NS local variables: +.\" NS doc-str-dfp +. +.de doc-first-parameter +. ds doc-str-dfp "\$1 +.. +. +. +.\" NS Sh user macro (not callable) +.\" NS section headers +.\" NS +.\" NS modifies: +.\" NS doc-func-args-processed +.\" NS doc-func-count +.\" NS doc-in-authors-section +.\" NS doc-in-files-section +.\" NS doc-in-see-also-section +.\" NS doc-in-synopsis-section +.\" NS doc-indent-synopsis +.\" NS doc-indent-synopsis-active +.\" NS doc-is-func +.\" NS doc-num-func-args +.\" NS +.\" NS local variables: +.\" NS doc-reg-Sh +.\" NS doc-reg-Sh1 +.\" NS doc-section-XXX +.\" NS +.\" NS width register `Sh' set in doc-common +. +.ds doc-section-name NAME +.ds doc-section-synopsis SYNOPSIS +.ds doc-section-description DESCRIPTION +.ds doc-section-see-also SEE +.ds doc-section-files FILES +.ds doc-section-authors AUTHORS +. +.de Sh +. ie \n[doc-arg-limit] \{\ +. \" we only allow `Sh' within `Sh'; it will change the font back to +. \" `doc-Sh-font' +. ie "\*[doc-macro-name]"Sh" \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-arg-limit] >= \n[doc-arg-ptr]) \{\ +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. nop \*[doc-Sh-font]\c +. doc-print-recursive +. \} +. el \{\ +. tm Usage: .Sh section_name ... (#\n[.c]) +. doc-reset-args +. \}\} +. el \{\ +. tm Usage: .Sh not callable by other macros (#\n[.c]) +. doc-reset-args +. \}\} +. el \{\ +. if !\n[.$] \{\ +. tm Usage: .Sh section_name ... (#\n[.c]) +. return +. \} +. +. ds doc-macro-name Sh +. doc-parse-args \$@ +. +. if t \ +' ad +. +. \" this resolves e.g. `.Sh "SEE ALSO"' +. doc-first-parameter \$* +. +. ie "\*[doc-str-dfp]"\*[doc-section-name]" \{\ +. doc-setup-header +' in 0 +. \} +. el \{\ +. nr doc-in-synopsis-section 0 +. nr doc-in-see-also-section 0 +. nr doc-in-files-section 0 +. nr doc-in-authors-section 0 +. +. ie "\*[doc-str-dfp]"\*[doc-section-synopsis]" \{\ +. if t \ +. na +. nr doc-in-synopsis-section 1 +. nr doc-indent-synopsis 0 +. nr doc-indent-synopsis-active 0 +. \} +. el \{ .ie "\*[doc-str-dfp]"\*[doc-section-description]" \{\ +. nr doc-is-func 0 +. nr doc-func-count 0 +. nr doc-func-args-processed 0 +. nr doc-num-func-args 0 +. \} +. el \{ .ie "\*[doc-str-dfp]"\*[doc-section-see-also]" \{\ +. if t \ +. na +. nr doc-in-see-also-section 1 +. \} +. el \{ .ie "\*[doc-str-dfp]"\*[doc-section-files]" \ +. nr doc-in-files-section 1 +. el .if "\*[doc-str-dfp]"\*[doc-section-authors]" \ +. nr doc-in-authors-section 1 +. \}\}\} +. +. in 0 +. nr doc-have-author 0 +. \} +. +. doc-setup-page-layout +' sp +. ns +. ta T .5i +. if !\n[cR] \ +. ne 3 +' fi +. +. if t \{\ +. nr doc-reg-Sh \n[.ss] +. nr doc-reg-Sh1 \n[.sss] +. ss (\n[.ss] * 5 / 3) (\n[.sss] * 5 / 3) +. \} +. +. nr doc-arg-ptr +1 +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. nop \*[doc-Sh-font]\c +. doc-print-recursive +. +. if t \ +. ss \n[doc-reg-Sh] \n[doc-reg-Sh1] +. +. in +\n[doc-subheader-indent]u +. ns +. \} +.. +. +. +.\" NS Ss user macro (not callable) +.\" NS subsection +.\" NS +.\" NS local variable: +.\" NS doc-reg-Ss +.\" NS doc-reg-Ss1 +.\" NS +.\" NS width register `Ss' set above +. .de Ss -.sp -.if !\\n(cR .ne 2 -.ti -.25i -\&\\*(sH\\$1 \|\\$2 \|\\$3 \|\\$4 \|\\$5 \|\\$6 \|\\$7 \|\\$8 \|\\$9 -\&\fP\s0 -.ta .5i 1i 1.5i 2i 2.5i 3i 3.5i 4i 4.5i 5i 5.5i 6i 6.5i -.if !\\n(cR .ne 2 -.br +. ie \n[doc-arg-limit] \{\ +. \" we only allow `Ss' within `Ss'; it will change the font back to +. \" `doc-Sh-font' +. ie "\*[doc-macro-name]"Ss" \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-arg-limit] >= \n[doc-arg-ptr]) \{\ +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. nop \*[doc-Sh-font]\c +. doc-print-recursive +. \} +. el \{\ +. tm Usage: .Ss subsection_name ... (#\n[.c]) +. doc-reset-args +. \}\} +. el \{\ +. tm Usage: .Ss not callable by other macros (#\n[.c]) +. doc-reset-args +. \}\} +. el \{\ +. if !\n[.$] \{\ +. tm Usage: .Ss subsection_name ... (#\n[.c]) +. return +. \} +. +. ds doc-macro-name Ss +. doc-parse-args \$@ +. +. sp +. if !\n[cR] \ +. ne 3 +. ti -.25i +. +. nr doc-reg-Ss \n[.ss] +. nr doc-reg-Ss1 \n[.sss] +. ss (\n[.ss] * 5 / 4) (\n[.sss] * 5 / 4) +. +. nr doc-arg-ptr +1 +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. nop \*[doc-Sh-font]\c +. doc-print-recursive +. +. ss \n[doc-reg-Ss] \n[doc-reg-Ss1] +. +. ta T .5i +. if !\n[cR] \ +. ne 2 +. br +. \} .. +. +. +.\" NS Rd macro (not parsed, not callable) +.\" NS print global register dump to stderr +.\" NS +.\" NS local variables: +.\" NS doc-reg-Rd +. .de Rd -.tm MDOC REGISTER DUMP -.tm Db==\\n(Db register DEBUG MODE -.tm L[0-9] registers - stack of list types -.tm L0==\\n(L0 -.tm L1==\\n(L1 -.tm L2==\\n(L2 -.tm L3==\\n(L3 -.tm L4==\\n(L4 -.tm L5==\\n(L5 -.tm L6==\\n(L6 -.tm L7==\\n(L7 -.tm L8==\\n(L8 -.tm L9==\\n(L9 -.tm O[0-9] registers - stack of indent -.tm O0==\\n(O0 -.tm O1==\\n(O1 -.tm O2==\\n(O2 -.tm O3==\\n(O3 -.tm O4==\\n(O4 -.tm O5==\\n(O5 -.tm O6==\\n(O6 -.tm O7==\\n(O7 -.tm O8==\\n(O8 -.tm O9==\\n(O9 -.tm aC==\\n(aC register argument counter (aV/fV) -.tm aJ==\\n(aJ register (for vR) -.tm aN==\\n(aN register -.tm aP==\\n(aP register argument pointer (aV) -.tm aT==\\n(aT register argument type -.tm aa==\\n(aa local register -.tm bK==\\n(bK register - Book Name flag -.tm cF==\\n(cF register save current font -.tm cI==\\n(cI register - column indent width -.tm cZ==\\n(cZ register save current font size -.tm dK==\\n(dK register - Date flag -.tm d[0-9] registers - display-type stack -.tm d0==\\n(d0 -.tm d1==\\n(d1 -.tm d2==\\n(d2 -.tm d3==\\n(d3 -.tm d4==\\n(d4 -.tm d5==\\n(d5 -.tm d6==\\n(d6 -.tm d7==\\n(d7 -.tm d8==\\n(d8 -.tm d9==\\n(d9 -.tm dZ==\\n(dZ register diversion count -.tm fD==\\n(fD register subroutine test (in synopsis only) -.tm fV==\\n(fV register argument counter (must set to \\n(.$ prior to -.tm fY==\\n(fY register - dick with old style function declarations (fortran) -.tm fZ==\\n(fZ register also subroutine count (in synopsis only) -.tm h[0-9] register horizontal tag stack (continuous if 1, break if -.tm h0==\\n(h0 -.tm h1==\\n(h1 -.tm h2==\\n(h2 -.tm h3==\\n(h3 -.tm h4==\\n(h4 -.tm h5==\\n(h5 -.tm h6==\\n(h6 -.tm h7==\\n(h7 -.tm h8==\\n(h8 -.tm h9==\\n(h9 -.tm iD==\\n(iD local register -.tm iI==\\n(iI local register (indent for inline debug mode) -.tm iN==\\n(iN register DEBUG MODE (inline if 1, to stderr if -.tm iS==\\n(iS register - indent second command line in a synopsis -.tm jK==\\n(jK register - [reference] Journal Name flag -.tm jM==\\n(jM local register -.tm jN==\\n(jN local register -.tm lC==\\n(lC register - list type stack counter -.tm lK==\\n(lK register count of lines read from input file -.tm nK==\\n(nK register - [reference] issue number flag -.tm nU==\\n(nU register count -.tm oK==\\n(oK register - [reference] optional information flag -.tm oM==\\n(oM register (extension possible) -.tm o[0-9] register offset stack (nested tags) -.tm o0==\\n(o0 -.tm o1==\\n(o1 -.tm o2==\\n(o2 -.tm o3==\\n(o3 -.tm o4==\\n(o4 -.tm o5==\\n(o5 -.tm o6==\\n(o6 -.tm o7==\\n(o7 -.tm o8==\\n(o8 -.tm o9==\\n(o9 -.tm oM==\\n(oM register open ended line flag -.tm pK==\\n(pK register - [reference] page number flag -.tm qK==\\n(qK register - Corporate or Foreign Author flag -.tm rK==\\n(rK register - [reference] report flag -.tm rS==\\n(rS register - Reference Start flag -.tm sM==\\n(sM register - default is one (space mode on) -.tm tK==\\n(tK register - reference title flag -.tm tP==\\n(tP register tag flag (for diversions) -.tm tX==\\n(tX register (initial class) -.tm tY==\\n(tY register (next possible lC value) -.tm t[0-9] register tag string stack (nested tags) -.tm t0==\\n(t0 -.tm t1==\\n(t1 -.tm t2==\\n(t2 -.tm t3==\\n(t3 -.tm t4==\\n(t4 -.tm t5==\\n(t5 -.tm t6==\\n(t6 -.tm t7==\\n(t7 -.tm t8==\\n(t8 -.tm t9==\\n(t9 -.tm uK==\\n(uK register - reference author(s) counter -.tm vK==\\n(vK register - reference volume flag -.tm v[0-9] register vertical tag break stack -.tm v0==\\n(v0 -.tm v1==\\n(v1 -.tm v2==\\n(v2 -.tm v3==\\n(v3 -.tm v4==\\n(v4 -.tm v5==\\n(v5 -.tm v6==\\n(v6 -.tm v7==\\n(v7 -.tm v8==\\n(v8 -.tm v9==\\n(v9 -.tm w[0-9] register tag stack (nested tags) -.tm w0==\\n(w0 -.tm w1==\\n(w1 -.tm w2==\\n(w2 -.tm w3==\\n(w3 -.tm w4==\\n(w4 -.tm w5==\\n(w5 -.tm w6==\\n(w6 -.tm w7==\\n(w7 -.tm w8==\\n(w8 -.tm w9==\\n(w9 -.tm xX==\\n(xX local register -.tm END OF REGISTER DUMP +. tm MDOC GLOBAL REGISTER DUMP +. tm doc-macro-name == `\*[doc-macro-name]' +. tm doc-arg-limit == \n[doc-arg-limit] +. tm doc-num-args == \n[doc-num-args] +. tm doc-arg-ptr == \n[doc-arg-ptr] +. +. nr doc-reg-Rd 1 +. while (\n[doc-reg-Rd] <= \n[doc-arg-limit]) \{\ +. tm doc-arg\n[doc-reg-Rd] == `\*[doc-arg\n[doc-reg-Rd]]' +. tm doc-type\n[doc-reg-Rd] == \n[doc-type\n[doc-reg-Rd]] +. tm doc-space\n[doc-reg-Rd] == `\*[doc-space\n[doc-reg-Rd]]' +. nr doc-reg-Rd +1 +. \} +. +. tm doc-curr-font == \n[doc-curr-font] +. tm doc-curr-size == \n[doc-curr-size] +. tm doc-indent-synopsis == \n[doc-indent-synopsis] +. tm doc-indent-synopsis-active == \n[doc-indent-synopsis-active] +. tm doc-have-decl == \n[doc-have-decl] +. tm doc-have-var == \n[doc-have-var] +. tm doc-command-name == `\*[doc-command-name]' +. tm doc-quote-left == `\*[doc-quote-left]' +. tm doc-quote-right == `\*[doc-quote-right]' +. tm doc-nesting-level == \n[doc-nesting-level] +. tm doc-in-list == \n[doc-in-list] +. tm doc-space == `\*[doc-space]' +. tm doc-saved-space == `\*[doc-saved-space]' +. tm doc-space-mode == \n[doc-space-mode] +. tm doc-have-space == \n[doc-have-space] +. tm doc-have-slot == \n[doc-have-slot] +. tm doc-keep-type == \n[doc-keep-type] +. tm doc-display-depth == \n[doc-display-depth] +. tm doc-is-compact == \n[doc-is-compact] +. +. nr doc-reg-Rd 0 +. while (\n[doc-reg-Rd] <= \n[doc-display-depth]) \{\ +. tm doc-display-type-stack\n[doc-reg-Rd] == `\*[doc-display-type-stack\n[doc-reg-Rd]]' +. tm doc-display-indent-stack\n[doc-reg-Rd] == \n[doc-display-indent-stack\n[doc-reg-Rd]] +. tm doc-display-ad-stack\n[doc-reg-Rd] == \n[doc-display-ad-stack\n[doc-reg-Rd]] +. tm doc-display-fi-stack\n[doc-reg-Rd] == \n[doc-display-fi-stack\n[doc-reg-Rd]] +. nr doc-reg-Rd +1 +. \} +. +. tm doc-fontmode-depth == \n[doc-fontmode-depth] +. +. nr doc-reg-Rd 1 +. while (\n[doc-reg-Rd] <= \n[doc-fontmode-depth]) \{\ +. tm doc-fontmode-font-stack\n[doc-reg-Rd] == `\n[doc-fontmode-font-stack\n[doc-reg-Rd]]' +. tm doc-fontmode-size-stack\n[doc-reg-Rd] == `\n[doc-fontmode-size-stack\n[doc-reg-Rd]]' +. nr doc-reg-Rd +1 +. \} +. +. tm doc-list-depth == \n[doc-list-depth] +. +. nr doc-reg-Rd 1 +. while (\n[doc-reg-Rd] <= \n[doc-list-depth]) \{\ +. tm doc-list-type-stack\n[doc-reg-Rd] == `\*[doc-list-type-stack\n[doc-reg-Rd]]' +. tm doc-list-have-indent-stack\n[doc-reg-Rd] == \n[doc-list-have-indent-stack\n[doc-reg-Rd]] +. tm doc-list-indent-stack\n[doc-reg-Rd] == \n[doc-list-indent-stack\n[doc-reg-Rd]] +. tm doc-compact-list-stack\n[doc-reg-Rd] == \n[doc-compact-list-stack\n[doc-reg-Rd]] +. tm doc-tag-prefix-stack\n[doc-reg-Rd] == `\*[doc-tag-prefix-stack\n[doc-reg-Rd]]' +. tm doc-tag-width-stack\n[doc-reg-Rd] == `\*[doc-tag-width-stack\n[doc-reg-Rd]]' +. tm doc-list-offset-stack\n[doc-reg-Rd] == \n[doc-list-offset-stack\n[doc-reg-Rd]] +. tm doc-enum-list-count-stack\n[doc-reg-Rd] == \n[doc-enum-list-count-stack\n[doc-reg-Rd]] +. nr doc-reg-Rd +1 +. \} +. +. tm doc-saved-Pa-font == `\*[doc-saved-Pa-font]' +. tm doc-curr-type == \n[doc-curr-type] +. tm doc-curr-arg == `\*[doc-curr-arg]' +. tm doc-diag-list-input-line-count == \n[doc-diag-list-input-line-count] +. tm doc-num-columns == \n[doc-num-columns] +. tm doc-column-indent-width == \n[doc-column-indent-width] +. tm doc-is-func == \n[doc-is-func] +. tm doc-have-old-func == \n[doc-have-old-func] +. tm doc-func-arg-count == \n[doc-func-arg-count] +. tm doc-func-arg == `\*[doc-func-arg]' +. tm doc-num-func-args == \n[doc-num-func-args] +. tm doc-func-args-processed == \n[doc-func-args-processed] +. tm doc-have-func == \n[doc-have-func] +. tm doc-is-reference == \n[doc-is-reference] +. tm doc-reference-count == \n[doc-reference-count] +. tm doc-author-count == \n[doc-author-count] +. +. nr doc-reg-Rd 0 +. while (\n[doc-reg-Rd] <= \n[doc-author-count]) \{\ +. tm doc-author-name\n[doc-reg-Rd] == `\*[doc-author-name\n[doc-reg-Rd]]' +. nr doc-reg-Rd +1 +. \} +. +. tm doc-book-count == \n[doc-book-count] +. tm doc-book-name == `\*[doc-book-name]' +. tm doc-date-count == \n[doc-date-count] +. tm doc-date == `\*[doc-date]' +. tm doc-publisher-count == \n[doc-publisher-count] +. tm doc-publisher-name == `\*[doc-publisher-name]' +. tm doc-journal-count == \n[doc-journal-count] +. tm doc-journal-name == `\*[doc-journal-name]' +. tm doc-issue-count == \n[doc-issue-count] +. tm doc-issue-name == `\*[doc-issue-name]' +. tm doc-optional-count == \n[doc-optional-count] +. tm doc-optional-string == `\*[doc-optional-string]' +. tm doc-page-number-count == \n[doc-page-number-count] +. tm doc-page-number-string == `\*[doc-page-number-string]' +. tm doc-corporate-count == \n[doc-corporate-count] +. tm doc-corporate-name == `\*[doc-corporate-name]' +. tm doc-report-count == \n[doc-report-count] +. tm doc-report-name == `\*[doc-report-name]' +. tm doc-reference-title-count == \n[doc-reference-title-count] +. tm doc-reference-title-name == `\*[doc-reference-title-name]' +. tm doc-reference-title-name-for-book == `\*[doc-reference-title-name-for-book]' +. tm doc-volume-count == \n[doc-volume-count] +. tm doc-volume-name == `\*[doc-volume-name]' +. tm doc-have-author == \n[doc-have-author] +. +. tm doc-document-title == `\*[doc-document-title]' +. tm doc-volume == `\*[doc-volume]' +. tm doc-section == `\*[doc-section]' +. tm doc-operating-system == `\*[doc-operating-system]' +. tm doc-date-string == `\*[doc-date-string]' +. tm doc-header-space == \n[doc-header-space] +. tm doc-footer-space == \n[doc-footer-space] +. tm doc-display-vertical == \n[doc-display-vertical] +. tm doc-header-string == `\*[doc-header-string]' +. tm doc-in-synopsis-section == \n[doc-in-synopsis-section] +. tm doc-in-see-also-section == \n[doc-in-see-also-section] +. tm doc-in-files-section == \n[doc-in-files-section] +. tm doc-in-authors-section == \n[doc-in-authors-section] +. +. tm END OF GLOBAL REGISTER DUMP .. -.\" Ns Lb macro - Formal library names for LIBRARY sections -.\" note: this macro does not handle punctuation -.\" it is really only intended for standalone use. -.\" Note: please don't forget to update mdoc.samples(7)' `Library name' list -.\" when adding new library -.de Lb -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.if !\\n(.$==1 .tm Usage: .Lb [library name] -.if "\\$1"libc" \&Standard C Library (libc, -lc) -.if "\\$1"libc_r" \&Reentrant C Library (libc_r, -lc_r) -.if "\\$1"libcalendar" \&Calendar Arithmetic Library (libcalendar, -lcalendar) -.if "\\$1"libcam" \&Common Access Method User Library (libcam, -lcam) -.if "\\$1"libcipher" \&FreeSec Crypt Library (libcipher, -lcipher) -.if "\\$1"libcompat" \&Compatibility Library (libcompat, -lcompat) -.if "\\$1"libcrypt" \&Crypt Library (libcrypt, -lcrypt) -.if "\\$1"libdevstat" \&Device Statistics Library (libdevstat, -ldevstat) -.if "\\$1"libdisk" \&Interface to Slice and Partition Labels Library (libdisk, -ldisk) -.if "\\$1"libedit" \&Line Editor and History Library (libedit, -ledit) -.if "\\$1"libfetch" \&File Transfer Library (libfetch, -lfetch) -.if "\\$1"libipsec" \&IPsec Support Library (libipsec, -lipsec) -.if "\\$1"libipx" \&IPX Address Conversion Support Library (libipx, -lipx) -.if "\\$1"libkvm" \&Kernel Data Access Library (libkvm, -lkvm) -.if "\\$1"libm" \&Math Library (libm, -lm) -.if "\\$1"libmd" \&Message Digest (MD4, MD5, etc.) Support Library (libmd, -lmd) -.if "\\$1"libnetgraph" \&Netgraph User Library (libnetgraph, -lnetgraph) -.if "\\$1"librpcsvc" \&RPC Service Library (librpcsvc, -lrpcsvc) -.if "\\$1"libskey" \&S/Key Password Control Table Access Library (libskey, -lskey) -.if "\\$1"libusb" \&USB HID access routines library (libusb, -lusb) -.if "\\$1"libutil" \&System Utilities Library (libutil, -lutil) -.if "\\$1"libvgl" \&Video Graphics Library (libvgl, -lvgl) -.. +. +. +.ec +. +.\" EOF Index: head/contrib/groff/tmac/doc-ditroff =================================================================== --- head/contrib/groff/tmac/doc-ditroff (revision 75588) +++ head/contrib/groff/tmac/doc-ditroff (revision 75589) @@ -1,282 +1,348 @@ .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" 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. +.\" 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. .\" .\" 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. .\" .\" @(#)doc-ditroff 8.1 (Berkeley) 06/08/93 .\" $FreeBSD$ .\" -.\" tmac.mdoc-ditroff .\" %beginstrip% -.\" -.\" -rC1 numbers pages continuously; initialize to avoid warnings -.if \n(.g .if !rC .nr C 0 -.ds aD \fI\s10 -.ds aR \f(CO\s10 -.ds cM \f(CB\s10 -.ds dF \fR\s10 -.ds eM \fI\s10 -.ds eR \fC\s10 -.ds eV \fC\s10 -.ds fA \f(CO\s10 -.ds fD \f(CB\s10 -.ds fL \f(CB\s10 -.ds fN \f(CB\s10 -.ds fP \fP\s0 -.ds fS \s0 -.ds fT \f(CO\s10 -.ds Hs \fR\s10 -.ds iC \f(CB\s10 -.ds lI \fC -.ds lP \fR\|(\|\fP\s10 -.ds lp \fR(\fP\s10 -.ds rP \fR\|)\|\fP\s10 -.ds rp \fR)\fP\s10 -.ds lB \fR\^[\^\fP\s10 -.ds rB \fR\^]\fP\s10 -.ds mL \fB\s10 -.ds nM \f(CB\s10 -.ds nO \fR\s10 -.ds nT \s0 -.ds pA \fC\s10 -.ds Pu \fR{\ .\ ,\ :\ ;\ ?\ !\ (\ )\ [\ ]\ \fR} -.ds rA \fR\s10 -.ds rT \f(CO\s10 -.ds sH \fB\s10 -.ds sP \s0 -.ds sY \fB\s10 -.ds sX \fR\s10 -.ds tF \fR -.ds tN \s9 -.ds vA \fI\s10 -.ds Vs \fR\s10 -.ds vT \f(CB\s10 -.ds xR \fC\s10 -.tr *\(** -.nr sI \w\fC,u*5 -.nr Ti \n(sIu -.nr Pp .5v -.ds lS \0 -.nr lS \w'\0'u -.nr dI 6n -.de pL -.nr Hm .5i -.nr Fm .5i -.nr ll 6.5i -.ll 6.5i -.nr lt 6.5i -.lt 6.5i -.nr po 1i -.po 1.i -.nr dV .5v -.. -.ds <= \(<= -.ds >= \(>= -.ie \n(.g \{\ -. ds Lq \(lq -. ds Rq \(rq +. +. +.eo +. +.\" use -rC=1 to number pages continuously +. +.if !r C .nr C 0 +. +.\" use -rD=1 for double-sided printing +. +.if !r D .nr D 0 +. +.\" use -rcR=1 to force the creation of a single, very long page +. +.if !r cR .nr cR 0 +. +.\" use -rS={11,12} to change the font size from 10pt to 11pt or 12pt. +. +.if !r S .nr S 10 +. +. +.ec +. +. +.ie (\n[S] == 11) \{\ +. ps 10.95z +. vs 13.6p .\} -.el \{\ -. ds Lq \&`` -. ds Rq \&'' +.el \{ .ie (\n[S] == 12) \{\ +. ps 12z +. vs 14.5p .\} -.ds ua \(ua -.ds aa \(aa -.ds ga \(ga -.ds sR \&' -.ds sL \&` -.ds q \&" -.\" Math stuff -.ds Pi \(*p -.ds Ne \(!= -.ds Le \(<= -.ds Ge \(>= +.el \{\ +. ps 10z +. vs 12p +.\}\} +. +. +.\" the `doc-xx-font' strings must not be empty! +. +.ds doc-caption-font \f[R]\s[\n[.ps]u] +.ds doc-caption-font2 \f[R]\s[\n[.ps]u] +.ds doc-Ad-font \f[I]\s[\n[.ps]u] +.ds doc-Ar-font \f[CO]\s[\n[.ps]u] +.ds doc-Cm-font \f[CB]\s[\n[.ps]u] +.ds doc-Em-font \f[I]\s[\n[.ps]u] +.ds doc-Er-font \f[C]\s[\n[.ps]u] +.ds doc-Ev-font \f[C]\s[\n[.ps]u] +.ds doc-Fa-font \f[CO]\s[\n[.ps]u] +.ds doc-Fd-font \f[CB]\s[\n[.ps]u] +.ds doc-Fl-font \f[CB]\s[\n[.ps]u] +.ds doc-Fn-font \f[CB]\s[\n[.ps]u] +.ds doc-Ft-font \f[CO]\s[\n[.ps]u] +.ds doc-Ic-font \f[CB]\s[\n[.ps]u] +.ds doc-Li-font \f[C] +.ds doc-Me-font \f[B]\s[\n[.ps]u] +.ds doc-Nm-font \f[CB]\s[\n[.ps]u] +.ds doc-No-font \f[R]\s[\n[.ps]u] +.ds doc-Pa-font \f[C]\s[\n[.ps]u] +.ds doc-Sh-font \f[B]\s[\n[.ps]u] +.ds doc-Sy-font \f[B]\s[\n[.ps]u] +.ds doc-Sx-font \f[B]\s[\n[.ps]u] +.ds doc-Tn-font-shape \f[R] +\# XXX: adapt to discrete LaTeX font sizes +.ds doc-Tn-font-size \s[(\n[.ps]u - 1z)] +.ds doc-Va-font \f[I]\s[\n[.ps]u] +.ds doc-Xr-font \f[C]\s[\n[.ps]u] +. +.ds doc-left-parenthesis \f[R]\|(\|\f[P]\s[\n[.ps]u] +.ds doc-right-parenthesis \f[R]\|)\|\f[P]\s[\n[.ps]u] +.ds lp \f[R](\f[P]\s[\n[.ps]u] +.ds rp \f[R])\f[P]\s[\n[.ps]u] +.ds doc-left-bracket \f[R]\^[\^\f[P]\s[\n[.ps]u] +.ds doc-right-bracket \f[R]\^]\f[P]\s[\n[.ps]u] +. +.tr *\[**] +. +.\" miscellaneous +.nr doc-subheader-indent (\w\f[C],u * 5u) +.nr doc-paragraph-space .5v +. +.nr doc-digit-width \w'\0'u +.nr doc-fixed-width \w\f[C]0 +. +.eo +. +. +.\" NS doc-header-space global register +.\" NS the space between header and body +. +.nr doc-header-space 0 +. +. +.\" NS doc-footer-space global register +.\" NS the space between body and footer +. +.nr doc-footer-space 0 +. +. +.\" NS doc-display-vertical global register +.\" NS vertical space between list elements etc. +. +.nr doc-display-vertical 0 +. +. +.\" NS doc-setup-page-layout macro +.\" NS set up page layout +.\" NS +.\" NS modifies: +.\" NS doc-display-vertical +.\" NS doc-footer-space +.\" NS doc-header-space +. +.de doc-setup-page-layout +. nr doc-header-space .5i +. nr doc-footer-space .5i +. +. ll 6.5i +. lt 6.5i +. po 1i +. +. nr doc-display-vertical .5v +.. +. +. +.ds doc-left-singlequote \[oq] +.ds doc-right-singlequote \[cq] +. +.\" the following strings are `official' +.ds <= \[<=] +.ds >= \[>=] +.ds Lq \[lq] +.ds Rq \[rq] +.ds ua \[ua] +.ds aa \[aa] +.ds ga \[ga] +.ds q \[dq] +.ds Pi \[*p] +.ds Ne \[!=] +.ds Le \[<=] +.ds Ge \[>=] .ds Lt < .ds Gt > -.ds Pm \(+- -.ds If \(if -.ds Na \fINaN\fP -.ds Ba \fR\&|\fP -.\" +.ds Pm \[+-] +.ds If \[if] +.ds Na \f[I]NaN\f[P] +.ds Ba \f[R]|\f[P] +. .nr gX 0 -.de hK -.ds hT \\*(dT -.if !"\\*(cH"Null" \{\ -. ie !"\\*(gP"Null" .as hT \|(\|\\*(cH\\*(gP\|) -. el .as hT \\|(\\|\\*(cH\\|) -.\} -.if "\\*(cH"Null" \{\ -. if !"\\*(gP"Null" .as hT \&\|(\|\\*(gP\|) -.\} -.wh 0 hM -.wh -1.25i fM -.nr nL \\n(nl -.ie \\n(gX==1 \{\ -. rm n1 -. bp -.\} -.el \{\ -' bp -.\} -.\" Don't set the page number if this is the first page, -.\" in case the user has used -n. -.if \\n(nL>0 \{\ -. if !\\nC \{\ -. nr % 1 -. \} -.\} -.nr gX 0 -.em lM +. +. +.\" NS doc-header-string global string +.\" NS the final string used for the manual page header +. +.ds doc-header-string +. +. +.\" NS doc-setup-header macro +.\" NS install and initialize header and footer support +.\" NS +.\" NS modifies: +.\" NS doc-header-string +. +.de doc-setup-header +. ds doc-header-string "\*[doc-document-title] +. if !"\*[doc-section]"Null" \ +. as doc-header-string \|(\*[doc-section]) +. +. wh 0 doc-header +. wh -1.25i doc-footer +. +. nr nL \n[nl] +. if \n[gX] \ +. ds doc-command-name +. +. br +. +. \" Don't set the page number if this is the first page, +. \" in case the user has used -n. +. if \n[nL] \ +. if !\n[C] \ +. nr % 1 +. +. nr gX 0 +. e@ doc-end-macro .. -.\" -.nr fW \w\fC0 -.de sW -.nr sW \w\fC\\$1 -.ie \\n(sW>=\\n(fW \{\ -. ie \\n(sW%\\n(fW .nr sW (\\n(sW/\\n(fW)+1 -. el .nr sW \\n(sW/\\n(fW -.\} -.el \{\ -. ie \\n(sW>0 .nr sW 1 -. el .nr sW 0 -.\} +. +. +.\" NS doc-get-width macro +.\" NS computes the width of a string as a multiple of `doc-fixed-width': +.\" NS `.doc-get-width string' +.\" NS +.\" NS modifies: +.\" NS doc-width +. +.de doc-get-width +. nr doc-width \w\f[C]\$1 +. ie (\n[doc-width] >= \n[doc-fixed-width]) \{\ +. ie (\n[doc-width] % \n[doc-fixed-width]) \ +. nr doc-width ((\n[doc-width] / \n[doc-fixed-width]) + 1) +. el \ +. nr doc-width (\n[doc-width] / \n[doc-fixed-width]) +. \} +. el \{\ +. ie \n[doc-width] \ +. nr doc-width 1 +. el \ +. nr doc-width 0 +. \} .. -.\" -.de aW -.nr sW \w\fC\\*(A\\$1 -.ie \\n(sW>=\\n(fW \{\ -. ie \\n(sW%\\n(fW .nr sW (\\n(sW/\\n(fW)+1 -. el .nr sW \\n(sW/\\n(fW -.\} -.el \{\ -. ie \\n(sW>0 .nr sW 1 -. el .nr sW 0 -.\} +. +. +.\" NS doc-get-arg-width macro +.\" NS computes the width of an argument as a multiple of +.\" NS `doc-fixed-width': `.doc-get-arg-width arg-index' +.\" NS +.\" NS modifies: +.\" NS doc-width +. +.de doc-get-arg-width +. nr doc-width \w\f[C]\*[doc-arg\$1] +. ie (\n[doc-width] >= \n[doc-fixed-width]) \{\ +. ie (\n[doc-width] % \n[doc-fixed-width]) \ +. nr doc-width ((\n[doc-width] / \n[doc-fixed-width]) + 1) +. el \ +. nr doc-width (\n[doc-width] / \n[doc-fixed-width]) +. \} +. el \{\ +. ie \n[doc-width] \ +. nr doc-width 1 +. el \ +. nr doc-width 0 +. \} .. -.\" NS Ql macro - Quoted literal define +. +. +.\" NS Ql user macro +.\" NS quoted literal define +.\" NS +.\" NS modifies: +.\" NS doc-argXXX +.\" NS doc-arg-limit +.\" NS doc-arg-ptr +.\" NS doc-macro-name +.\" NS doc-spaceXXX +.\" NS doc-typeXXX +.\" NS doc-quote-left +.\" NS doc-quote-right +.\" NS +.\" NS local variables: +.\" NS doc-reg-Ql +.\" NS doc-reg-Ql1 +.\" NS doc-reg-Ql2 +.\" NS +.\" NS width register `Ql' set in doc-common +. .de Ql -.if \\n(aC==0 \{\ -. ds mN Ql -. ds A1 \\$1 -. ds A2 \\$2 -. ds A3 \\$3 -. ds A4 \\$4 -. ds A5 \\$5 -. ds A6 \\$6 -. ds A7 \\$7 -. ds A8 \\$8 -. nr fV \\n(.$ -. fV -.\} -.nr aP \\n(aP+1 -.aW \\n(aP -.nr aP \\n(aP-1 -.if \\n(sW>2 .Li -.if \\n(sW<=2 \{\ -.\" Db on -. if (\\n(aP>0) \{\ -. ds A\\n(aP Li -. nr aP \\n(aP -1 -. \} -. if (\\n(aP==0) \{\ -. rm C0 C1 C2 C3 C4 C5 C6 C7 C8 C9 -. rm S1 S2 S3 S4 S5 S6 S7 S8 S9 -. rn A8 A9 -. rn A7 A8 -. rn A6 A7 -. rn A5 A6 -. rn A4 A5 -. rn A3 A4 -. rn A2 A3 -. rn A1 A2 -. ds A1 Li -. nr fV \\n(aC+1 -. nr aC 0 -. fV -. \} -. ds qL \&\\*(sL -. ds qR \&\\*(sR -. En -.\" Db off -.\} +. if !\n[doc-arg-limit] \{\ +. ie \n[.$] \{\ +. ds doc-macro-name Ql +. doc-parse-args \$@ +. \} +. el \ +. tm Usage: .Ql argument ... (#\n[.c]) +. \} +. +. nr doc-reg-Ql (\n[doc-arg-ptr] + 1) +. doc-get-arg-width \n[doc-reg-Ql] +. +. \" don't use quotes if we have more than two succeeding string arguments +. nr doc-reg-Ql +1 +. if (\n[doc-arg-limit] >= \n[doc-reg-Ql]) \ +. if (\n[doc-type\n[doc-reg-Ql]] == 2) \ +. nr doc-width 3 +. +. \" make a difference in quotation style for strings longer +. \" than two characters +. ie (\n[doc-width] > 2) \ +. Li +. el \{\ +. ie \n[doc-arg-ptr] \{\ +. \" we replace `Ql' with `Li' +. ds doc-arg\n[doc-arg-ptr] Li +. nr doc-arg-ptr -1 +. \} +. el \{\ +. \" if .Ql has been called directly, we must shift all elements in +. \" the argument vector to the right so that we can insert `Li' +. nr doc-reg-Ql \n[doc-arg-limit] +. nr doc-reg-Ql1 (\n[doc-arg-limit] + 1) +. while \n[doc-reg-Ql] \{\ +. rn doc-arg\n[doc-reg-Ql] doc-arg\n[doc-reg-Ql1] +. rnn doc-type\n[doc-reg-Ql] doc-type\n[doc-reg-Ql1] +. rn doc-space\n[doc-reg-Ql] doc-space\n[doc-reg-Ql1] +. nr doc-reg-Ql -1 +. nr doc-reg-Ql1 -1 +. \} +. ds doc-arg1 Li +. nr doc-type1 1 +. ds doc-space1 +. nr doc-arg-limit +1 +. \} +. +. ds doc-quote-left "\*[doc-left-singlequote] +. ds doc-quote-right "\*[doc-right-singlequote] +. doc-enclose-string +. \} .. -.\" NS Sh macro - Section Headers -.\" NS nS register - Section Header SYNOPSIS flag -.\" NS nF register - Section Header FILES flag -.\" NS nA register - Section Header SEE ALSO flag -.\" NS nT register - Section Header STANDARDS flag -.de Sh -.nr nS 0 -.nr sE 0 -.nr iS 0 -'ad -.ie "\\$1"NAME" \{\ -. hK -' in 0 -.\} -.el \{\ -. nr nS 0 -. nr nA 0 -. nr nF 0 -. nr nT 0 -. nr nY 0 -. nr oT 0 -. if "\\$1"SYNOPSIS" \{\ -. na -. nr nS 1 -. \} -. if "\\$1"DESCRIPTION" \{\ -. nr fY 0 -. nr fZ 0 -. nr fB 0 -. nr Fb 0 -. ds Fb -. \} -. if "\\$1"SEE" \{\ -. nr nA 1 -. na -. \} -. if "\\$1"FILES" .nr nF 1 -. if "\\$1"STANDARDS" .nr nT 1 -. if "\\$1"AUTHORS" .nr nY 1 -. if "\\$1"SEE" .nr sE 1 -. in 0 -. nr aN 0 -.\} -.pL -'sp -.ns -.ta .5i 1i 1.5i 2i 2.5i 3i 3.5i 4i 4.5i 5i 5.5i 6i 6.5i -.if !\\n(cR .ne 3 -'fi -\&\\*(sH\\$1 \|\\$2 \|\\$3 \|\\$4 \|\\$5 \|\\$6 \|\\$7 \|\\$8 \|\\$9 -\&\fP\s0\& -.in \\n(.iu+\\n(Tiu -.ns -.. +. +. +.ec +. +.\" EOF Index: head/contrib/groff/tmac/doc-nroff =================================================================== --- head/contrib/groff/tmac/doc-nroff (revision 75588) +++ head/contrib/groff/tmac/doc-nroff (revision 75589) @@ -1,225 +1,282 @@ .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" 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. +.\" 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. .\" .\" 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. .\" .\" @(#)doc-nroff 8.1 (Berkeley) 06/08/93 .\" $FreeBSD$ .\" -.\" tmac.mdoc-nroff .\" %beginstrip% -.\" -.ds aD \fI -.ds aR \fI -.ds cM \fB -.ds dF \fR -.ds eM \fI -.ds eR \fR -.ds eV \fR -.ds fA \fI -.ds fD \fB -.ds fL \fB -.ds fN \fB -.ds fP \fP -.ds fS -.ds fT \fI -.ds Hs \fR -.ds iC \fB -.ds lI \fR -.ds lP \fR\|(\fP -.ds rP \fR\|)\fP -.ds lp \fR\|(\fP -.ds rp \fR\|)\fP -.ds lB \fR\|[\|\fP -.ds rB \fR\|]\fP -.ds mL \fB -.ds nM \fB -.ds nO \fR -.ds pA \fI -.ds Pu {\ .\ ,\ :\ ;\ ?\ !\ (\ )\ [\ ]} -.ds rA \fR -.ds rT \fI -.ds sH \fB -.ds sP -.ds sY \fB -.ds sX \fI -.ds tF \fR -.ds tN -.ds vA \fI -.ds Vs \fR -.ds vT \fB -.ds xR \fR -.\" MISCELLANEOUS -.nr sI .5i -.nr Ti .5i -.nr cR 1 -.nr Pp 1v -.ds lS \0\0 -.nr lS \w'\0\0'u -.nr dI 6n -.\" -.de pL -.ie \\n(cR .nr Hm 0 -.el .nr Hm .5i -.nr Fm .5i -.nr ll 78n -.ll 78n -.nr lt 78n -.lt 78n -.nr po 0i -.po 0i -.nr dV 1v -.ad l -.na +. +. +.eo +. +.\" use -rD=1 for double-sided printing +. +.if !r D .nr D 0 +. +.\" use -rcR=0 to have multiple pages instead of a single, very long page +. +.if !r cR .nr cR 1 +. +.\" the following switches are ignored in nroff mode +. +.nr S 10 +.nr C 0 +. +.\" the `doc-xx-font' strings must not be empty! +. +.ds doc-caption-font \f[R] +.ds doc-caption-font2 \f[R] +.ds doc-Ad-font \f[I] +.ds doc-Ar-font \f[I] +.ds doc-Cm-font \f[B] +.ds doc-Em-font \f[I] +.ds doc-Er-font \f[R] +.ds doc-Ev-font \f[R] +.ds doc-Fa-font \f[I] +.ds doc-Fd-font \f[B] +.ds doc-Fl-font \f[B] +.ds doc-Fn-font \f[B] +.ds doc-Ft-font \f[I] +.ds doc-Ic-font \f[B] +.ds doc-Li-font \f[R] +.ds doc-Me-font \f[B] +.ds doc-Nm-font \f[B] +.ds doc-No-font \f[R] +.ds doc-Pa-font \f[I] +.ds doc-Sh-font \f[B] +.ds doc-Sy-font \f[B] +.ds doc-Sx-font \f[I] +.ds doc-Tn-font-shape \f[R] +.ds doc-Tn-font-size +.ds doc-Va-font \f[I] +.ds doc-Xr-font \f[R] +. +.ds doc-left-parenthesis \f[R](\f[P] +.ds doc-right-parenthesis \f[R])\f[P] +.ds lp \f[R](\f[P] +.ds rp \f[R])\f[P] +.ds doc-left-bracket \f[R][\f[P] +.ds doc-right-bracket \f[R]]\f[P] +. +.\" miscellaneous +.nr doc-subheader-indent .5i +.nr doc-paragraph-space 1v +. +.ec +.nr doc-digit-width \w'\0\0'u +.nr doc-fixed-width \w'0' +.eo +. +. +.\" NS doc-header-space global register +.\" NS the space between header and body +. +.nr doc-header-space 0 +. +. +.\" NS doc-footer-space global register +.\" NS the space between body and footer +. +.nr doc-footer-space 0 +. +. +.\" NS doc-display-vertical global register +.\" NS vertical space between list elements etc. +. +.nr doc-display-vertical 0 +. +. +.\" NS doc-setup-page-layout macro +.\" NS set up page layout +.\" NS +.\" NS modifies: +.\" NS doc-display-vertical +.\" NS doc-footer-space +.\" NS doc-header-space +. +.de doc-setup-page-layout +. ie \n[cR] \ +. nr doc-header-space 0 +. el \ +. nr doc-header-space .5i +. nr doc-footer-space .5i +. +. ll 78n +. lt 78n +. po 0i +. +. nr doc-display-vertical 1v +. ad l +. na .. -.ds <= \&<\&= -.ds >= \&>\&= -.ds Rq '' -.ds Lq `` -.ds ua ^ -.ds aa \' -.ds ga \` -.ds sL ` -.ds sR ' -.ds q \&" -.\" Math stuff -.ds Pi pi -.ds Ne != -.ds Le <= -.ds Ge >= +. +. +.ec +. +.ds doc-left-singlequote \[oq] +.ds doc-right-singlequote \[cq] +. +.\" the following strings are `official' +.ds <= \[<=] +.ds >= \[>=] +.ds aa \[aa] +.ds ga \[ga] +.ds q \[dq] +.ds Ne \[!=] +.ds Le \[<=] +.ds Ge \[>=] .ds Lt < .ds Gt > -.ds Pm +- -.ds If infinity -.ds Na \fINaN\fP -.ds Ba \fR\&|\fP -.\" -.de hK -.nr % 1 -.ds hT \\*(dT -.if !"\\*(cH"Null" \{\ -. ie !"\\*(gP"Null" .as hT \|(\|\\*(cH\\*(gP\|) -. el .as hT \\|(\\|\\*(cH\\|) +.ds Pm \[+-] +.ds Na \f[I]NaN\f[P] +.ds Ba \f[R]|\f[P] +. +.\" Unicode TTYs have all glyph forms; for other TTY character sets we need +.\" character representations which are different from GNU troff's standard +.\" forms. +.ie '\*[.T]'utf8' \{\ +. ds Rq \[rq] +. ds Lq \[lq] +. ds ua \[ua] +. ds Pi \[*p] +. ds If \[if] .\} -.if "\\*(cH"Null" .if !"\\*(gP"Null" .as hT \&\|(\|\\*(gP\|) -.ie \\n(cR \{\ -. hM -.\" wh -1v fM -.\} .el \{\ -. wh 0 hM -. wh -1.167i fM +. ds Rq '' +. ds Lq `` +. ds ua ^ +. ds Pi pi +. ds If infinity .\} -.if \\n(nl==0:\\n(nl==-1 'bp -.em lM +. +.eo +. +. +.\" NS doc-header-string global string +.\" NS the final string used for the manual page header +. +.ds doc-header-string +. +. +.\" NS doc-setup-header macro +.\" NS install and initialize header and footer support +.\" NS +.\" NS modifies: +.\" NS doc-header-string +. +.de doc-setup-header +. nr % 1 +. ds doc-header-string "\*[doc-document-title] +. if !"\*[doc-section]"Null" \ +. as doc-header-string (\*[doc-section]) +. +. ie \n[cR] \ +. doc-header +. el \{\ +. wh 0 doc-header +. wh -1.167i doc-footer +. \} +. +. if ((\n[nl] == 0) : (\n[nl] == -1)) \ +' bp +. +. e@ doc-end-macro .. -.nr fW \w'0' -.de sW -.nr sW \w\\$1 -.ie \\n(sW>=\\n(fW \{\ -. ie \\n(sW%\\n(fW .nr sW (\\n(sW/\\n(fW)+1 -. el .nr sW \\n(sW/\\n(fW -.\} -.el .nr sW 0 +. +. +.\" NS doc-get-width macro +.\" NS computes the width of a string as a multiple of `doc-fixed-width': +.\" NS `.doc-get-width string' +.\" NS +.\" NS modifies: +.\" NS doc-width +. +.de doc-get-width +. nr doc-width \w\$1 +. ie (\n[doc-width] >= \n[doc-fixed-width]) \{\ +. ie (\n[doc-width] % \n[doc-fixed-width]) \ +. nr doc-width ((\n[doc-width] / \n[doc-fixed-width]) + 1) +. el \ +. nr doc-width (\n[doc-width] / \n[doc-fixed-width]) +. \} +. el \ +. nr doc-width 0 .. -.de aW -.nr sW \w\\*(A\\$1 -.ie \\n(sW>=\\n(fW \{\ -. ie \\n(sW%\\n(fW .nr sW (\\n(sW/\\n(fW)+1 -. el .nr sW \\n(sW/\\n(fW -.\} -.el .nr sW 0 +. +. +.\" NS doc-get-arg-width macro +.\" NS computes the width of an argument as a multiple of +.\" NS `doc-fixed-width': `.doc-get-arg-width arg-index' +.\" NS +.\" NS modifies: +.\" NS doc-width +. +.de doc-get-arg-width +. nr doc-width \w\*[doc-arg\$1] +. ie (\n[doc-width] >= \n[doc-fixed-width]) \{\ +. ie (\n[doc-width] % \n[doc-fixed-width]) \ +. nr doc-width ((\n[doc-width] / \n[doc-fixed-width]) + 1) +. el \ +. nr doc-width (\n[doc-width] / \n[doc-fixed-width]) +. \} +. el \ +. nr doc-width 0 .. -.\" NS Ql macro - Quoted literal define +. +. +.\" NS Ql user macro +.\" NS quoted literal define +.\" NS +.\" NS modifies: +.\" NS doc-macro-name +.\" NS doc-quote-left +.\" NS doc-quote-right +.\" NS +.\" NS width register `Ql' set in doc-common +. .de Ql -.if \\n(aC==0 \{\ -. ds mN Ql -. ds A1 \\$1 -. ds A2 \\$2 -. ds A3 \\$3 -. ds A4 \\$4 -. ds A5 \\$5 -. ds A6 \\$6 -. ds A7 \\$7 -. ds A8 \\$8 -. ds A9 \\$9 -. nr fV \\n(.$ -. fV -.\} -.ds qL \&\\*(sL -.ds qR \&\\*(sR -.En \\$1 \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 +. if !\n[doc-arg-limit] \{\ +. ie \n[.$] \ +. ds doc-macro-name Ql +. el \ +. tm Usage: .Ql argument ... (#\n[.c]) +. \} +. +. ds doc-quote-left "\*[doc-left-singlequote] +. ds doc-quote-right "\*[doc-right-singlequote] +. +. doc-enclose-string \$@ .. -.\" NS Sh macro - Section Headers -.\" NS nS register - Section Header SYNOPSIS flag -.\" NS nF register - Section Header FILES flag -.\" NS nA register - Section Header SEE ALSO flag -.\" NS nT register - Section Header STANDARDS flag -.de Sh -.nr nS 0 -.nr sE 0 -.nr iS 0 -.ie "\\$1"NAME" \{\ -. hK -' in 0 -.\} -.el \{\ -. nr nS 0 -. nr nA 0 -. nr nF 0 -. nr nT 0 -. nr nY 0 -. nr aN 0 -. nr oT 0 -. if "\\$1"SEE" .nr nA 1 -. if "\\$1"FILES" .nr nF 1 -. if "\\$1"STANDARDS" .nr nT 1 -. if "\\$1"SYNOPSIS" .nr nS 1 -. if "\\$1"DESCRIPTION" \{\ -. rr fB -. rr Fb -. ds Fb -. nr fY 0 -. nr fZ 0 -. \} -. if "\\$1"AUTHORS" .nr nY 1 -. in 0 -.\} -.pL -'sp -.ns -.ta .5i 1i 1.5i 2i 2.5i 3i 3.5i 4i 4.5i 5i 5.5i 6i 6.5i -.if !\\n(cR .ne 3 -'fi -\&\\*(sH\\$1 \|\\$2 \|\\$3 \|\\$4 \|\\$5 \|\\$6 \|\\$7 \|\\$8 \|\\$9 -\&\fP\s0\& -.in \\n(.iu+\\n(Tiu -.if "\\$1"SEE" .nr sE 1 -.ns -.. +. +. +.ec +. +.\" EOF Index: head/contrib/groff/tmac/doc-syms =================================================================== --- head/contrib/groff/tmac/doc-syms (revision 75588) +++ head/contrib/groff/tmac/doc-syms (revision 75589) @@ -1,362 +1,729 @@ .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" 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. +.\" 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. .\" .\" 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. .\" .\" @(#)doc-syms 8.1 (Berkeley) 06/08/93 .\" $FreeBSD$ .\" .\" %beginstrip% -.\" NS Ux macro - UNIX +. +. +.eo +. +.\" NS Ux user macro +.\" NS print UNIX +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Ux +.\" NS +.\" NS width register `Ux' defined in doc-common +. .de Ux -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.as b1 \&\\*(tNUNIX\\*(aa -.rm aa -.if \\n(aC==0 \{\ -. if \\n(.$>0 .aV \\$1 \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 -.\} -.ie \\n(aC>\\n(aP \{\ -. nr aP \\n(aP+1 -. ie \\n(C\\n(aP==1 \{\ -. \\*(A\\n(aP -. \} -. el .nR -.\} -.el .aZ +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Ux \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Ux +. doc-parse-args \$@ +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] \*[doc-Tn-font-size]UNIX\*[doc-str-Ux] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. -.\" NS Bx macro -BSD (fix smaller nroff version) +. +. +.\" NS Bx user macro +.\" NS print BSD (fix smaller nroff version) +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Bx +.\" NS doc-str-Bx1 +.\" NS doc-str-Bx-XXX +.\" NS +.\" NS width register `Bx' defined in doc-common +. +.ds doc-str-Bx-Reno \-Reno +.ds doc-str-Bx-reno \-Reno +.ds doc-str-Bx-Tahoe \-Tahoe +.ds doc-str-Bx-tahoe \-Tahoe +.ds doc-str-Bx-Lite \-Lite +.ds doc-str-Bx-lite \-Lite +.ds doc-str-Bx-Lite2 \-Lite2 +.ds doc-str-Bx-lite2 \-Lite2 +. .de Bx -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.if \\n(aC==0 \{\ -. ie \\n(.$==0 \&\\*(tNBSD\\*(aa -. el .aV \\$1 \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 -.\} -.if "\\$1"-alpha" \{\ -\¤tly in alpha test. -. aY -.\} -.if "\\$1"-beta" \{\ -\¤tly in beta test. -. aY -.\} -.if "\\$1"-devel" \{\ -\¤tly under development. -. aY -.\} -.if \\n(aC>\\n(aP \{\ -. nr aP \\n(aP+1 -. ie \\n(C\\n(aP==2 \{\ -. as b1 \&\\*(A\\n(aP\&\\*(tNBSD\\*(aa -. ie \\n(aC>\\n(aP \{\ -. nr jj \\n(aP+1 -. ie \\n(C\\n(jj==2 \{\ -. if "\\*(A\\n(jj"Reno" \{\ -. nr aP \\n(aP+1 -. as b1 \&\-\\*(A\\n(jj -. \} -. if "\\*(A\\n(jj"reno" \{\ -. nr aP \\n(aP+1 -. as b1 \&\-Reno -. \} -. if "\\*(A\\n(jj"Tahoe" \{\ -. nr aP \\n(aP+1 -. as b1 \&\-\\*(A\\n(jj -. \} -. if "\\*(A\\n(jj"tahoe" \{\ -. nr aP \\n(aP+1 -. as b1 \&\-Tahoe -. \} -. ie \\n(aC>\\n(aP \{\ -. nr aP \\n(aP+1 -. nR -. \} -. el .aZ -. \} -. el \{\ -. nr aP \\n(aP+1 -. nR -. \} -. rr jj -. \} -. el .aZ -. \} -. el \{\ -. as b1 \&\\*(tNBSD\\*(aa -. nR -. \} -.\} +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Bx \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-Bx1 \*[doc-Tn-font-size]BSD\*[doc-str-Bx] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Bx +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie "\*[doc-arg\n[doc-arg-ptr]]"-alpha" \ +. as doc-str-Bx1 " (currently in alpha test) +. el \{ .ie "\*[doc-arg\n[doc-arg-ptr]]"-beta" \ +. as doc-str-Bx1 " (currently in beta test) +. el \{ .ie "\*[doc-arg\n[doc-arg-ptr]]"-devel" \ +. as doc-str-Bx1 " (currently under development) +. el \{\ +. ds doc-str-Bx1 \&\*[doc-arg\n[doc-arg-ptr]]\^\*[doc-Tn-font-size] +. as doc-str-Bx1 BSD\*[doc-str-Bx] +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie d doc-str-Bx-\*[doc-arg\n[doc-arg-ptr]] \ +. as doc-str-Bx1 "\*[doc-str-Bx-\*[doc-arg\n[doc-arg-ptr]]] +. el \ +. nr doc-arg-ptr -1 +. \} +. el \ +. nr doc-arg-ptr -1 +. \} +. el \ +. nr doc-arg-ptr -1 +. \}\}\}\}\} +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Bx1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. -.\" Ns Ud macro - prints "currently under development" (HISTORY section) +. +. +.\" NS Ud user macro (not parsed, not callable) +.\" NS print "currently under development" (HISTORY section) +.\" NS +.\" NS width register `Ud' defined in doc-common +. .de Ud -\¤tly under development. +. nop \¤tly under development. .. -.\" Ns At macro - AT&T UNIX (this macro does not handle punctuation) +. +. +.\" NS At user macro +.\" NS print AT&T UNIX +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-At +.\" NS doc-str-At1 +.\" NS doc-str-At-XXX +.\" NS +.\" NS width register `At' defined in doc-common +. +.ds doc-str-At-32v \&Version\~32V +.as doc-str-At-32v " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v1 \&Version\~1 +.as doc-str-At-v1 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v2 \&Version\~2 +.as doc-str-At-v2 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v3 \&Version\~3 +.as doc-str-At-v3 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v4 \&Version\~4 +.as doc-str-At-v4 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v5 \&Version\~5 +.as doc-str-At-v5 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v6 \&Version\~6 +.as doc-str-At-v6 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-v7 \&Version\~7 +.as doc-str-At-v7 " \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +.ds doc-str-At-V \*[doc-Tn-font-size]AT&T\*[doc-str-At] System\~V +.as doc-str-At-V " \*[doc-Tn-font-size]UNIX\*[doc-str-At] +.ds doc-str-At-V.1 \*[doc-Tn-font-size]AT&T\*[doc-str-At] System\~V.1 +.as doc-str-At-V.1 " \*[doc-Tn-font-size]UNIX\*[doc-str-At] +.ds doc-str-At-V.2 \*[doc-Tn-font-size]AT&T\*[doc-str-At] System\~V.2 +.as doc-str-At-V.2 " \*[doc-Tn-font-size]UNIX\*[doc-str-At] +.ds doc-str-At-V.4 \*[doc-Tn-font-size]AT&T\*[doc-str-At] System\~V.4 +.as doc-str-At-V.4 " \*[doc-Tn-font-size]UNIX\*[doc-str-At] +. .de At -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.if \\n(.$==2 \{\ -. if "\\$1"32v" \&Version 32V \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v1" \&Version 1 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v2" \&Version 2 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v3" \&Version 3 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v4" \&Version 4 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v5" \&Version 5 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v6" \&Version 6 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"v7" \&Version 7 \\*(tNAT&T UNIX\\*(aa\\$2 -. if "\\$1"V" \&\\*(tNAT&T\\*(aa System V \\*(tNUNIX\\*(aa\\$2 -. if "\\$1"V.1" \&\\*(tNAT&T\\*(aa System V.1 \\*(tNUNIX\\*(aa\\$2 -. if "\\$1"V.2" \&\\*(tNAT&T\\*(aa System V.2 \\*(tNUNIX\\*(aa\\$2 -. if "\\$1"V.4" \&\\*(tNAT&T\\*(aa System V.4 \\*(tNUNIX\\*(aa\\$2 -.\} -.if \\n(.$==1 \{\ -. if "\\$1"32v" \&Version 32V \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v1" \&Version 1 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v2" \&Version 2 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v3" \&Version 3 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v4" \&Version 4 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v5" \&Version 5 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v6" \&Version 6 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"v7" \&Version 7 \\*(tNAT&T UNIX\\*(aa -. if "\\$1"V" \&\\*(tNAT&T\\*(aa System V \\*(tNUNIX\\*(aa -. if "\\$1"V.1" \&\\*(tNAT&T\\*(aa System V.1 \\*(tNUNIX\\*(aa -. if "\\$1"V.2" \&\\*(tNAT&T\\*(aa System V.2 \\*(tNUNIX\\*(aa -. if "\\$1"V.4" \&\\*(tNAT&T\\*(aa System V.4 \\*(tNUNIX\\*(aa -.\} -.if \\n(.$==0 \{\ -\&\\*(tNAT&T UNIX\\*(aa -.\} +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-At \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-At1 \*[doc-Tn-font-size]AT&T UNIX\*[doc-str-At] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name At +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie \A\*[doc-arg\n[doc-arg-ptr]] \{\ +. ie d doc-str-At-\*[doc-arg\n[doc-arg-ptr]] \ +. ds doc-str-At1 "\*[doc-str-At-\*[doc-arg\n[doc-arg-ptr]]] +. el \{\ +. tmc mdoc warning: .At: Unknown AT&T UNIX version +. tm1 " `\*[doc-arg\n[doc-arg-ptr]]' (#\n[.c]) +. nr doc-arg-ptr -1 +. \}\} +. el \ +. nr doc-arg-ptr -1 +. \} +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-At1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. -.\" NS Fx macro - FreeBSD -.\" NS b0 string local temporary -.ds Fx*1.0 -.ds Fx*1.1 -.ds Fx*1.1.5 -.ds Fx*1.1.5.1 -.ds Fx*2 -.ds Fx*2.0 -.ds Fx*2.0.5 -.ds Fx*2.1 -.ds Fx*2.1.5 -.ds Fx*2.1.6 -.ds Fx*2.1.7 -.ds Fx*2.2 -.ds Fx*2.2.1 -.ds Fx*2.2.2 -.ds Fx*2.2.5 -.ds Fx*2.2.6 -.ds Fx*2.2.7 -.ds Fx*2.2.8 -.ds Fx*3 -.ds Fx*3.0 -.ds Fx*3.1 -.ds Fx*3.2 -.ds Fx*3.3 -.ds Fx*3.4 -.ds Fx*3.5 -.ds Fx*4 -.ds Fx*4.0 -.ds Fx*4.1 -.ds Fx*4.1.1 -.ds Fx*4.2 -.ds Fx*4.3 -.ds Fx*5 -.ds Fx*5.0 +. +. +.\" NS Fx user macro +.\" NS print FreeBSD +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Fx +.\" NS doc-str-Fx1 +.\" NS +.\" NS width register `Fx' defined in doc-common +. +.\" we use the doc-operating-system-FreeBSD-* strings defined in doc-common +. .de Fx -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.as b1 \&\\*(tNFreeBSD\\*(aa -.if \\n(aC==0 \{\ -. ie \\n(.$==0 .pB -. el .aV \\$1 \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9 -.\} -.if \\n(aC>0 \{\ -. ie \\n(aC==\\n(aP .aZ -. el \{\ -. nr aP \\n(aP+1 -. if \\n(C\\n(aP==2 \{\ -. ds b0 \\*(A\\n(aP -. if !dFx*\\*(b0 .tm Unknown FreeBSD version ``\\*(b0'' at line \\n(c. -. rm b0 -. as b1 \ -. \} -. nR -. \} -.\} +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Fx \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-Fx1 \*[doc-Tn-font-size]\%FreeBSD\*[doc-str-Fx] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Fx +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie \A\*[doc-arg\n[doc-arg-ptr]] \{\ +. ie d doc-operating-system-FreeBSD-\*[doc-arg\n[doc-arg-ptr]] \ +. as doc-str-Fx1 \~\*[doc-operating-system-FreeBSD-\*[doc-arg\n[doc-arg-ptr]]] +. el \{\ +. tmc mdoc warning: .Fx: Unknown FreeBSD version +. tm1 " `\*[doc-arg\n[doc-arg-ptr]]' (#\n[.c]) +. as doc-str-Fx1 \~\*[doc-arg\n[doc-arg-ptr]] +. \}\} +. el \ +. as doc-str-Fx1 \~\*[doc-arg\n[doc-arg-ptr]] +. \} +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Fx1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. -.\" Ns Nx macro - NetBSD -.\" -.\" Please try to keep the exceptions in this macro in sync with NetBSD! +. +. +.\" NS Nx user macro +.\" NS print NetBSD +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Nx +.\" NS doc-str-Nx1 +.\" NS +.\" NS width register `Nx' defined in doc-common +. +.\" we use the doc-operating-system-NetBSD-* strings defined in doc-common +. .de Nx -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -.ds ab \& \& -.ds ac \\$1 -. ie \\n(.$==0 .rm ab -.el .ie "\\$1"0.8a" .ds ac 0.8A -.el .ie "\\$1"0.9a" .ds ac 0.9A -.el .ie "\\$1"1.0a" .ds ac 1.0A -.el .ie "\\$1"1.2a" .ds ac 1.2A -.el .ie "\\$1"1.2b" .ds ac 1.2B -.el .ie "\\$1"." .rm ab -.el .if "\\$1"," .rm ab -\&\\*(tNNetBSD\\*(ab\\*(ac\\*(aa\\$2 +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Nx \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-Nx1 \*[doc-Tn-font-size]\%N\s[\n[doc-curr-size]u]et +. as doc-str-Nx1 \*[doc-Tn-font-size]BSD\*[doc-str-Nx] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Nx +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \{\ +. ie \A\*[doc-arg\n[doc-arg-ptr]] \{\ +. ie d doc-operating-system-NetBSD-\*[doc-arg\n[doc-arg-ptr]] \ +. as doc-str-Nx1 \~\*[doc-operating-system-NetBSD-\*[doc-arg\n[doc-arg-ptr]]] +. el \{\ +. tmc mdoc warning: .Nx: Unknown NetBSD version +. tm1 " `\*[doc-arg\n[doc-arg-ptr]]' (#\n[.c]) +. as doc-str-Nx1 \~\*[doc-arg\n[doc-arg-ptr]] +. \}\} +. el \ +. as doc-str-Nx1 \~\*[doc-arg\n[doc-arg-ptr]] +. \} +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Nx1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. -.\" Ns Ox macro - OpenBSD -.\" -.\" Please try to keep any exceptions in this macro in sync with OpenBSD! +. +. +.\" NS Ox user macro +.\" NS print OpenBSD +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Ox +.\" NS doc-str-Ox1 +.\" NS +.\" NS width register `Ox' defined in doc-common +. .de Ox -.nr cF \\n(.f -.nr cZ \\n(.s -.ds aa \&\f\\n(cF\s\\n(cZ -\&\\*(tNOpenBSD\\*(aa \\$1\\$2 +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Ox \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-Ox1 \*[doc-Tn-font-size]\%OpenBSD\*[doc-str-Ox] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Ox +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \ +. as doc-str-Ox1 \~\*[doc-arg\n[doc-arg-ptr]] +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Ox1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive .. +. +. +.\" NS Bsx user macro +.\" NS print BSD/OS +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-str-Bsx +.\" NS doc-str-Bsx1 +.\" NS +.\" NS width register `Bsx' defined in doc-common +. +.de Bsx +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-Bsx \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. \" default value if no argument +. ds doc-str-Bsx1 \*[doc-Tn-font-size]BSD/OS\*[doc-str-Bsx] +. +. if !\n[doc-arg-limit] \ +. if \n[.$] \{\ +. ds doc-macro-name Bsx +. doc-parse-args \$@ +. \} +. +. if (\n[doc-arg-limit] > \n[doc-arg-ptr]) \{\ +. nr doc-arg-ptr +1 +. ie (\n[doc-type\n[doc-arg-ptr]] == 2) \ +. as doc-str-Bsx1 \~\*[doc-arg\n[doc-arg-ptr]] +. el \ +. nr doc-arg-ptr -1 +. \} +. +. \" replace current argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Bsx1] +. nr doc-type\n[doc-arg-ptr] 2 +. ds doc-space\n[doc-arg-ptr] "\*[doc-space] +. +. \" recompute space vector for remaining arguments +. nr doc-num-args (\n[doc-arg-limit] - \n[doc-arg-ptr]) +. nr doc-arg-limit \n[doc-arg-ptr] +. if \n[doc-num-args] \ +. doc-parse-space-vector +. +. doc-print-recursive +.. +. +. .\" The Bt macro should go away now -.\" Ns Bt macro - prints "is currently in beta test." (HISTORY section) +. +.\" NS Bt user macro (not parsed, not callable) +.\" NS print "is currently in beta test." (HISTORY section) +.\" NS +.\" NS width register `Bt' defined in doc-common +. .de Bt -\&is currently in beta test. +. nop \&is currently in beta test. .. -.\" NS St macro - standards (posix, ansi - formal standard names) -.\" ISO/IEC 9945-1:1996 (-p1003.1-96) comprises: -.\" IEEE 1003.1-1990 -.\" IEEE 1003.1b-1993 -.\" IEEE 1003.1c-1995 -.\" and IEEE 1003.1i-1995 -.\" -.ds Px \\*(tNPOSIX -.ds Ai \\*(tNANSI +. +. +.\" NS Px user macro +.\" NS print POSIX +. +.ds Px \*[doc-Tn-font-size]\%POSIX +. +. +.\" NS Ai user macro +.\" NS print ANSI +. +.ds Ai \*[doc-Tn-font-size]\%ANSI +. +. +.\" NS St user macro +.\" NS standards (posix, ansi - formal standard names) +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-reg-St +.\" NS doc-str-St +.\" NS doc-str-St1 +.\" NS doc-str-St-XXX +.\" NS +.\" NS width register `St' defined in doc-common +. +.\" ANSI/ISO C +.ds doc-str-St--ansiC-89 \*[Ai] \*[doc-str-St]X\^3.159-1989 +.as doc-str-St--ansiC-89 " (\*[Lq]\)\*[Ai]\~C\*[doc-str-St]\*[Rq]) +.als doc-str-St--ansiC doc-str-St--ansiC-89 +.ds doc-str-St--isoC \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 9899:1990 +.as doc-str-St--isoC " (\*[Lq]\*[doc-Tn-font-size]ISO\~C\^89\*[doc-str-St]\*[Rq]) +.ds doc-str-St--isoC-99 \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 9899:1999 +.as doc-str-St--isoC-99 " (\*[Lq]\*[doc-Tn-font-size]ISO\~C\^99\*[doc-str-St]\*[Rq]) +. +.\" POSIX Part 1: System API +.ds doc-str-St--p1003.1 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1 +.as doc-str-St--p1003.1 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.ds doc-str-St--p1003.1-88 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1-1988 +.as doc-str-St--p1003.1-88 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.ds doc-str-St--p1003.1-90 \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 9945-1:1990 +.as doc-str-St--p1003.1-90 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.als doc-str-St--iso9945-1-90 doc-str-St--p1003.1-90 +.ds doc-str-St--p1003.1b-93 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1b-1993 +.as doc-str-St--p1003.1b-93 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.ds doc-str-St--p1003.1c-95 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1c-1995 +.as doc-str-St--p1003.1c-95 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.ds doc-str-St--p1003.1i-95 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1i-1995 +.as doc-str-St--p1003.1i-95 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.ds doc-str-St--p1003.1-96 \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 9945-1:1996 +.as doc-str-St--p1003.1-96 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +.als doc-str-St--iso9945-1-96 doc-str-St--p1003.1-96 +.ds doc-str-St--p1003.1g-2000 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.1g-2000 +.as doc-str-St--p1003.1g-2000 " (\*[Lq]\)\*[Px]\*[doc-str-St].1\*[Rq]) +. +.\" POSIX Part 2: Shell and Utilities +.ds doc-str-St--p1003.2 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.2 +.as doc-str-St--p1003.2 " (\*[Lq]\)\*[Px]\*[doc-str-St].2\*[Rq]) +.ds doc-str-St--p1003.2-92 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.2-1992 +.as doc-str-St--p1003.2-92 " (\*[Lq]\)\*[Px]\*[doc-str-St].2\*[Rq]) +.ds doc-str-St--p1003.2a-92 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 1003.2a-1992 +.as doc-str-St--p1003.2a-92 " (\*[Lq]\)\*[Px]\*[doc-str-St].2\*[Rq]) +.ds doc-str-St--iso9945-2-93 \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 9945-2:1993 +.as doc-str-St--iso9945-2-93 " (\*[Lq]\)\*[Px]\*[doc-str-St].2\*[Rq]) +. +.\" X/Open +.ds doc-str-St--susv2 Version\~2 of the Single \*[doc-Tn-font-size]UNIX\*[doc-str-St] Specification +.as doc-str-St--susv2 " (\*[Lq]\*[doc-Tn-font-size]SUSv2\*[doc-str-St]\*[Rq]) +.ds doc-str-St--svid4 System\~V Interface Definition, Fourth Edition +.as doc-str-St--svid4 " (\*[Lq]\*[doc-Tn-font-size]SVID\*[doc-str-St]\^4\*[Rq]) +.ds doc-str-St--xbd5 \*[doc-Tn-font-size]X/Open\*[doc-str-St] System Interface Definitions Issue\~5 +.as doc-str-St--xbd5 " (\*[Lq]\*[doc-Tn-font-size]XBD\*[doc-str-St]\^5\*[Rq]) +.ds doc-str-St--xcu5 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Commands and Utilities Issue\~5 +.as doc-str-St--xcu5 " (\*[Lq]\*[doc-Tn-font-size]XCU\*[doc-str-St]\^5\*[Rq]) +.ds doc-str-St--xcurses4.2 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Curses Issue\~4.2 +.as doc-str-St--xcurses4.2 " (\*[Lq]\*[doc-Tn-font-size]XCURSES\*[doc-str-St]\^4.2\*[Rq]) +.ds doc-str-St--xns5 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Networking Services Issue\~5 +.as doc-str-St--xns5 " (\*[Lq]\*[doc-Tn-font-size]XNS\*[doc-str-St]\^5\*[Rq]) +.ds doc-str-St--xns5.2 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Networking Services Issue\~5.2 +.as doc-str-St--xns5.2 " (\*[Lq]\*[doc-Tn-font-size]XNS\*[doc-str-St]\^5.2\*[Rq]) +.ds doc-str-St--xpg3 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Portability Guide Issue\~3 +.as doc-str-St--xpg3 " (\*[Lq]\*[doc-Tn-font-size]XPG\*[doc-str-St]\^3\*[Rq]) +.ds doc-str-St--xpg4 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Portability Guide Issue\~4 +.as doc-str-St--xpg4 " (\*[Lq]\*[doc-Tn-font-size]XPG\*[doc-str-St]\^4\*[Rq]) +.ds doc-str-St--xpg4.2 \*[doc-Tn-font-size]X/Open\*[doc-str-St] Portability Guide Issue\~4.2 +.as doc-str-St--xpg4.2 " (\*[Lq]\*[doc-Tn-font-size]XPG\*[doc-str-St]\^4.2\*[Rq]) +.ds doc-str-St--xsh5 \*[doc-Tn-font-size]X/Open\*[doc-str-St] System Interfaces and Headers Issue\~5 +.as doc-str-St--xsh5 " (\*[Lq]\*[doc-Tn-font-size]XSH\*[doc-str-St]\^5\*[Rq]) +. +.\" Miscellaneous +.ds doc-str-St--ieee754 \*[doc-Tn-font-size]\%IEEE\*[doc-str-St] Std 754-1985 +.ds doc-str-St--iso8802-3 \*[doc-Tn-font-size]ISO/IEC\*[doc-str-St] 8802-3:1989 +. .de St -.if \\n(aC==0 \{\ -. ie \\n(.$==0 \{\ -.tm Usage: .St [-p1003.1-90 | -p1003.2 | -ansiC-89 | -iso ] \\*(Pu ... (#\\n(.c) -. \} -. el \{\ -. ds mN St -. nr aP 0 -. ds A1 \\$1 -. ds A2 \\$2 -. ds A3 \\$3 -. ds A4 \\$4 -. ds A5 \\$5 -. ds A6 \\$6 -. ds A7 \\$7 -. ds A8 \\$8 -. ds A9 \\$9 -. nr fV \\n(.$ -. fV -. \} -.\} -.if \\n(aC>\\n(aP \{\ -. nr cF \\n(.f -. nr cZ \\n(.s -. ds aa \&\f\\n(cF\s\\n(cZ -. nr aP \\n(aP+1 -. if "\\*(A\\n(aP"-p1003.1b-93" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.1b-1993\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.1g-2000" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.1g-2000\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.1-90" \{\ -. ds b1 \&\\*(tNISO/IEC \\*(aa9945-1:1990\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.1-88" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.1-1988\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.1" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.1\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.2-92" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.2-1992\\*(sV -. as b1 (``\\*(tN\\*(Px.2\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.2" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa1003.2\\*(sV -. as b1 (``\\*(tN\\*(Px.2\\*(aa'') -. \} -. if "\\*(A\\n(aP"-p1003.1-96" \{\ -. ds b1 \&\\*(tNISO/IEC \\*(aa9945-1:1996\\*(sV -. as b1 (``\\*(tN\\*(Px.1\\*(aa'') -. \} -. if "\\*(A\\n(aP"-ansiC" \{\ -. ds b1 \&\\*(tNANSI \\*(aaX\^3.159-1989\\*(sV -. as b1 (``\\*(tNANSI\~C\\*(aa'') -. \} -. if "\\*(A\\n(aP"-isoC" \{\ -. ds b1 \&\\*(tNISO/IEC \\*(aa9899:1990\\*(sV -. as b1 (``\\*(tNISO\~C89\\*(aa'') -. \} -. if "\\*(A\\n(aP"-isoC-99" \{\ -. ds b1 \&\\*(tNISO/IEC \\*(aa9899:1999\\*(sV -. as b1 (``\\*(tNISO C99\\*(aa'') -. \} -. if "\\*(A\\n(aP"-ansiC-89" \{\ -. ds b1 \&\\*(tNANSI \\*(aaX\^3.159-1989\\*(sV -. as b1 (``\\*(tNANSI\~C\\*(aa'') -. \} -. if "\\*(A\\n(aP"-ieee754" \{\ -. ds b1 \&\\*(tNIEEE Std \\*(aa754-1985 -. \} -. if "\\*(A\\n(aP"-iso8802-3" \{\ -. ds b1 \&\\*(tNISO/IEC \\*(aa8802-3:1989 -. \} -. if "\\*(A\\n(aP"-xpg3" \{\ -. ds b1 \&\\*(tNX/Open Portability Guide Issue\~3\\*(aa\\*(sV -. as b1 (``\\*(tNXPG3\\*(aa'') -. \} -. if "\\*(A\\n(aP"-xpg4" \{\ -. ds b1 \&\\*(tNX/Open Portability Guide Issue\~4\\*(aa\\*(sV -. as b1 (``\\*(tNXPG4\\*(aa'') -. \} -. if "\\*(A\\n(aP"-xpg4.2" \{\ -. ds b1 \&\\*(tNX/Open Portability Guide Issue\~4.2\\*(aa\\*(sV -. as b1 (``\\*(tNXPG4.2\\*(aa'') -. \} -. if "\\*(A\\n(aP"-susv2" \{\ -. ds b1 \&\\*(tNVersion\~2 of the Single UNIX Specification\\*(aa\\*(sV -. as b1 (``\\*(tNSUSv2\\*(aa'') -. \} -. ie \\n(aC>\\n(aP \{\ -. nr aP \\n(aP+1 -. nR -. \} -. el .aZ -.\} +. if !\n[doc-arg-limit] \{\ +. ie \n[.$] \{\ +. ds doc-macro-name St +. doc-parse-args \$@ +. \} +. el \ +. doc-St-usage +. \} +. +. if !\n[doc-arg-limit] \ +. return +. +. nr doc-arg-ptr +1 +. ie (\n[doc-arg-limit] >= \n[doc-arg-ptr]) \{\ +. nr doc-curr-font \n[.f] +. nr doc-curr-size \n[.ps] +. ds doc-str-St \f[\n[doc-curr-font]]\s[\n[doc-curr-size]u] +. +. ds doc-str-St1 +. ie \A\*[doc-arg\n[doc-arg-ptr]] \{\ +. ie d doc-str-St-\*[doc-arg\n[doc-arg-ptr]] \ +. ds doc-str-St1 "\*[doc-str-St-\*[doc-arg\n[doc-arg-ptr]]] +. el \{\ +. tmc "mdoc warning: .St: Unknown standard abbreviation +. tm1 " `\*[doc-arg\n[doc-arg-ptr]]' (#\n[.c]) +. tm1 " Please refer to the groff_mdoc(7) manpage for a +. tm1 " list of available standard abbreviations. +. \}\} +. el \ +. doc-St-usage +. +. \" replacing argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-St1] +. +. doc-print-recursive +. \} +. el \{\ +. doc-St-usage +. doc-reset-args +. \} .. +. +. +.\" NS doc-St-usage macro +. +.de doc-St-usage +. tm1 "Usage: .St standard (#\n[.c]) +. tm1 " Please refer to the groff_mdoc(7) manpage for a list of +. tm1 " available standard abbreviations. +.. +. +. +.\" NS Lb user macro +.\" NS formal library names for LIBRARY sections +.\" NS +.\" NS modifies: +.\" NS doc-arg-ptr +.\" NS doc-curr-font +.\" NS doc-curr-size +.\" NS doc-macro-name +.\" NS +.\" NS local variable: +.\" NS doc-reg-Lb +.\" NS doc-str-Lb +.\" NS doc-str-Lb-XXX +.\" NS +.\" NS width register `Lb' defined in doc-common +. +.ds doc-str-Lb-libarm32 ARM32 Architecture Library (libarm32, \-larm32) +.ds doc-str-Lb-libc Standard C\~Library (libc, \-lc) +.ds doc-str-Lb-libcompat Compatibility Library (libcompat, \-lcompat) +.ds doc-str-Lb-libcrypt Crypt Library (libcrypt, \-lcrypt) +.ds doc-str-Lb-libcurses Curses Library (libcurses, \-lcurses) +.ds doc-str-Lb-libedit Command Line Editor Library (libedit, \-ledit) +.ds doc-str-Lb-libi386 i386 Architecture Library (libi386, \-li386) +.ds doc-str-Lb-libipsec IPsec Policy Control Library (libipsec, \-lipsec) +.ds doc-str-Lb-libkvm Kernel Data Access Library (libkvm, \-lkvm) +.ds doc-str-Lb-libm Math Library (libm, \-lm) +.ds doc-str-Lb-libmenu Curses Menu Library (libmenu, \-lmenu) +.ds doc-str-Lb-libossaudio OSS Audio Emulation Library (libossaudio, \-lossaudio) +.ds doc-str-Lb-libposix \*[Px] Compatibility Library (libposix, \-lposix) +.ds doc-str-Lb-libresolv DNS Resolver Library (libresolv, \-lresolv) +.ds doc-str-Lb-libtermcap Termcap Access Library (libtermcap, \-ltermcap) +.ds doc-str-Lb-libutil System Utilities Library (libutil, \-lutil) +.ds doc-str-Lb-libz Compression Library (libz, \-lz) +. +.de Lb +. if !\n[doc-arg-limit] \{\ +. ie \n[.$] \{\ +. ds doc-macro-name Lb +. doc-parse-args \$@ +. \} +. el \ +. tm Usage: .Lb library_name ... (#\n[.c]) +. \} +. +. if !\n[doc-arg-limit] \ +. return +. +. nr doc-arg-ptr +1 +. ie (\n[doc-arg-limit] >= \n[doc-arg-ptr]) \{\ +. ie d doc-str-Lb-\*[doc-arg\n[doc-arg-ptr]] \ +. ds doc-str-Lb "\*[doc-str-Lb-\*[doc-arg\n[doc-arg-ptr]]] +. el \{\ +. tmc "mdoc warning: .Lb: no description for library +. tm1 " `\*[doc-arg\n[doc-arg-ptr]]' available (#\n[.c]) +. ds doc-str-Lb library \*[Lq]\*[doc-arg\n[doc-arg-ptr]]\*[Rq] +. \} +. +. \" replacing argument with result +. ds doc-arg\n[doc-arg-ptr] "\*[doc-str-Lb] +. +. doc-print-recursive +. \} +. el \{\ +. tm Usage: .Lb library_name ... (#\n[.c]) +. doc-reset-args +. \} +.. +. +. +.ec +. +.\" EOF Index: head/contrib/groff/tmac/strip.sed =================================================================== --- head/contrib/groff/tmac/strip.sed (revision 75588) +++ head/contrib/groff/tmac/strip.sed (revision 75589) @@ -1,3 +1,11 @@ # $FreeBSD$ -/%beginstrip%/,$s/[ ]*\\".*// +# strip comments, spaces, etc. after a line containing `%beginstrip%' +/%beginstrip%/,$ { + s/^\.[ ]*/./ + s/^\.\\".*/./ + s/\\".*/\\"/ + /\(.[ad]s\)/!s/[ ]*\\"// + /\(.[ad]s\)/s/\([^ ]*\)\\"/\1/ + s/\([^/]\)doc-/\1/g +} /^\.$/d