diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:40:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:40:15 +0000 |
commit | 399644e47874bff147afb19c89228901ac39340e (patch) | |
tree | 1c4c0b733f4c16b5783b41bebb19194a9ef62ad1 /scripts/LinuxManBook/andoc.tmac | |
parent | Initial commit. (diff) | |
download | manpages-399644e47874bff147afb19c89228901ac39340e.tar.xz manpages-399644e47874bff147afb19c89228901ac39340e.zip |
Adding upstream version 6.05.01.upstream/6.05.01
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts/LinuxManBook/andoc.tmac')
-rw-r--r-- | scripts/LinuxManBook/andoc.tmac | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/scripts/LinuxManBook/andoc.tmac b/scripts/LinuxManBook/andoc.tmac new file mode 100644 index 0000000..8a3d61d --- /dev/null +++ b/scripts/LinuxManBook/andoc.tmac @@ -0,0 +1,114 @@ +.\" andoc.tmac +.\" +.\" Load either an.tmac or doc.tmac. Multiple man pages can be handled. +.\" +.\" +.\" Copyright (C) 1991-2020 Free Software Foundation, Inc. +.\" Written by Werner Lemberg (wl@gnu.org), +.\" based on a patch from Tadziu Hoffmann. +.\" +.\" This file is part of groff. +.\" +.\" groff is free software; you can redistribute it and/or modify it +.\" under the terms of the GNU General Public License as published by +.\" the Free Software Foundation, either version 3 of the License, or +.\" (at your option) any later version. +.\" +.\" groff is distributed in the hope that it will be useful, but WITHOUT +.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +.\" or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public +.\" License for more details. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program. If not, see +.\" <http://www.gnu.org/licenses/>. +.\" +. +.if !\n(.g \ +. ab andoc.tmac: macros require groff extensions; aborting +. +.do nr *groff_andoc_tmac_C \n[.cp] +.cp 0 +. +.als andoc-em em +.als andoc-bp bp +.als andoc-ne ne +. +. +.\" We must not use '.de1' for 'reload-doc' or 'reload-man'! 'doc.tmac' +.\" unconditionally switches compatibility mode off, but '.de1' would +.\" ignore this, restoring the mode that was active before. Similarly, +.\" we have to switch back to the original compatibility mode for man +.\" documents in case there is a mix of mdoc and man input files. +.\" +.\" Due to a bug in GNU troff it necessary to have a no-op line between +.\" '.do' and '\*'. +. +. +.de reload-doc +. \" Flush any partially collected output line and write page footer in +. \" continuous rendering mode. +. do if d an-end \ +. do an-end +. +. \" Remove traps planted by an.tmac. +. do ch an-header +. do ch an-break-body-text +. do ch an-footer +. +. do als em andoc-em +. do als bp andoc-bp +. do als ne andoc-ne +. do blm \" no blank line trap +. do lsm \" no leading space trap +. em \" no end-of-input trap +. +. do rm Dd \" force reinitialization of doc.tmac +. do mso doc.tmac +. +. do als TH reload-man +. +\\*(Dd\\ +.. +. +.de reload-man +. \" Flush any partially collected output line and write page footer in +. \" continuous rendering mode. +. do if d doc-end-macro \ +. do doc-end-macro +. +. \" Remove traps planted by mdoc/doc-{n,dit}roff. +. do ch doc-header +. do ch doc-footer +. +. do als em andoc-em +. do als bp andoc-bp +. do als ne andoc-ne +. do blm \" no blank line trap +. em \" no end-of-input trap +. +. do rm TH \" force reinitialization of an.tmac +. do mso an.tmac +. +. do als Dd reload-doc +. +\\*(TH\\ +.. +. +.als TH reload-man +.als Dd reload-doc +. +.\" dummy equation macros -- eqnrc is read before .TH or .Dd is parsed +.de EQ +.. +.de EN +.. +. +.cp \n[*groff_andoc_tmac_C] +.do rr *groff_andoc_tmac_C +. +.\" Local Variables: +.\" mode: nroff +.\" fill-column: 72 +.\" End: +.\" vim: set filetype=groff textwidth=72: |