OpenBSD CVS

CVS log for src/share/tmac/mdoc/doc


[BACK] Up to [local] / src / share / tmac / mdoc

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.16 / (download) - annotate - [select for diffs], Tue Sep 27 18:57:17 2005 UTC (18 years, 8 months ago) by jaredy
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, HEAD
Changes since 1.15: +12 -5 lines
Diff to previous 1.15 (colored)

Allow `.An' to be given a -split/-nosplit flag to toggle the behavior of
causing line breaks to occur, as is present in newer versions of groff.

OK deraadt@, jmc@.

Revision 1.15 / (download) - annotate - [select for diffs], Sun Jun 6 22:38:09 2004 UTC (20 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.14: +35 -21 lines
Diff to previous 1.14 (colored)

update .Vt (variable type) macro:

- .Vt now parsed and callable
- do not cause line break/insert vertical space outside SYNOPSIS
- respect punctuation

the hard work from jared yanovich;
ok millert@

Revision 1.14 / (download) - annotate - [select for diffs], Fri Feb 20 10:29:05 2004 UTC (20 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.13: +57 -14 lines
Diff to previous 1.13 (colored)

- add .In macro for include headers
- remove obsolescent .Ex cruft
- do not separate .%A with a comma if there are only two authors
(from itojun@'s commit to NetBSD)
- escape -1 in .Rv
- add .Ex macro for exit values

ok millert@

Revision 1.13 / (download) - annotate - [select for diffs], Sat Oct 4 14:41:26 2003 UTC (20 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.12: +36 -12 lines
Diff to previous 1.12 (colored)

Allow ".Nm [punctuation]" to work (previously an argument was needed).
Also stops line break on ".Nm [no arg]".

from NetBSD;
ok deraadt@

Revision 1.12 / (download) - annotate - [select for diffs], Sat Oct 4 14:30:27 2003 UTC (20 years, 8 months ago) by jmc
Branch: MAIN
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored)

prevent line breaks on .Xr's; from NetBSD;
ok deraadt@

Revision 1.11 / (download) - annotate - [select for diffs], Tue Sep 2 19:04:58 2003 UTC (20 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 (colored)

various fixes:

doc: make sure that double spaces follow {!,?,.}, even when used in macros;
fix partially from NetBSD;

doc-common: add `?' and `!' as punctuation characters. This means they must
now be escaped (just like `.') using `\&';

doc-ditroff: add `?' and `!' to the .Pu macro; sync order with doc-nroff;

doc-nroff: add `?' and `!' to the .Pu macro; remove a bogus blank line;

ok deraadt@

Revision 1.10 / (download) - annotate - [select for diffs], Thu Jul 24 18:12:53 2003 UTC (20 years, 10 months ago) by jmc
Branch: MAIN
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

report the line number of the error when extraneous .Ed occurs;
idea from NetBSD but fixed slightly differently to sync with .El;

ok millert@ deraadt@

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jul 16 07:38:38 2003 UTC (20 years, 10 months ago) by jmc
Branch: MAIN
Changes since 1.8: +3 -5 lines
Diff to previous 1.8 (colored)

- fix a bug in .D1 that "ate" the first arg if it wasn't a macro
from NetBSD
- fix a typo in a comment

ok deraadt@

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jul 1 19:11:46 2003 UTC (20 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.7: +3 -1 lines
Diff to previous 1.7 (colored)

add back the vertical line space, this time conditionally and preceded
by a break;
from NetBSD;

ok deraadt@

Revision 1.7 / (download) - annotate - [select for diffs], Sat Jun 28 18:15:59 2003 UTC (20 years, 11 months ago) by jmc
Branch: MAIN
Changes since 1.6: +1 -2 lines
Diff to previous 1.6 (colored)

fixes a bug that was causing random blank lines in man pages;
diff taken from netbsd (mycroft@);

many thanks to wiz@netbsd for pointing me in this direction;

ok deraadt@

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 2 23:30:16 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.5: +2 -6 lines
Diff to previous 1.5 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Jan 23 06:29:33 2001 UTC (23 years, 4 months ago) by marc
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.4: +5 -3 lines
Diff to previous 1.4 (colored)

Tweak to allow groff -Tdvi -mandoc ... to work.
The mdoc macros were re-defining a font alias needed when dvi output
was selected.  Note: due to groff dvi font limitiations -Tps produces
nicer printed material than -Tdvi when using the mandoc macros.
OK millert@

Revision 1.4 / (download) - annotate - [select for diffs], Mon Nov 15 03:21:30 1999 UTC (24 years, 6 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.3: +5 -7 lines
Diff to previous 1.3 (colored)

Fix problem with extra spaces after an Xr reference; from NetBSD.

Revision 1.3 / (download) - annotate - [select for diffs], Sun Nov 30 05:00:07 1997 UTC (26 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

add -column, -dash, -hyphen to .Bl usage string; lukem

Revision 1.2 / (download) - annotate - [select for diffs], Sat Aug 24 07:47:07 1996 UTC (27 years, 9 months ago) by etheisen
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1, OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +6 -4 lines
Diff to previous 1.1 (colored)

Fixed mdocs Makefile, repaired nroff include paths, added OpenBSD rcs tags,
and included strip.sed for future use by new dir struct.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Aug 23 15:21:01 1996 UTC (27 years, 9 months ago) by etheisen
Branch: MAIN

Import of 4.4BSD-Lite2's troff doc stuff

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.