summaryrefslogtreecommitdiff
path: root/tmac
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2021-07-05 23:02:18 +1000
committerG. Branden Robinson <g.branden.robinson@gmail.com>2021-07-06 19:00:14 +1000
commitfdac25937ff4a1c81366e0fedcf66271e105d7dd (patch)
tree3ec7fe1f52501705543df81ce63a8dbdacb298e2 /tmac
parent19b85e1ae1c74a5f8894bbd0f5ae05902c19c1a3 (diff)
downloadgroff-git-fdac25937ff4a1c81366e0fedcf66271e105d7dd.tar.gz
[mandoc]: Reflect man rename in package and test.
* tmac/tmac.an (tmac/stamp-wrap): Macro-source `an.tmac` in the man wrapper. * tmac/andoc.tmac: Refer to (and macro-source) an.tmac. * tmac/man.tmac: Macro-source `an.tmac`, not `andoc.tmac`. * tmac/tests/andoc_flush-between-packages.sh: Call groff with `-mandoc` option instead of `-man`. Henceforth, if you want the andoc wrapper, you have to ask for it.
Diffstat (limited to 'tmac')
-rw-r--r--tmac/andoc.tmac9
-rw-r--r--tmac/man.tmac2
-rwxr-xr-xtmac/tests/andoc_flush-between-packages.sh2
-rw-r--r--tmac/tmac.am2
4 files changed, 7 insertions, 8 deletions
diff --git a/tmac/andoc.tmac b/tmac/andoc.tmac
index 1e6f105c1..5a948e6d7 100644
--- a/tmac/andoc.tmac
+++ b/tmac/andoc.tmac
@@ -1,7 +1,6 @@
.\" andoc.tmac
.\"
-.\" Load either an-old.tmac or doc.tmac. Multiple man pages can be
-.\" handled.
+.\" Load either an.tmac or doc.tmac. Multiple man pages can be handled.
.\"
.\"
.\" Copyright (C) 1991-2020 Free Software Foundation, Inc.
@@ -52,7 +51,7 @@
. do if d an-end \
. do an-end
.
-. \" Remove traps planted by an-old.tmac.
+. \" Remove traps planted by an.tmac.
. do ch an-header
. do ch an-break-body-text
. do ch an-footer
@@ -85,8 +84,8 @@
. do als bp andoc-bp
. do blm \" no blank line trap
.
-. do rm TH \" force reinitialization of an-old.tmac
-. do mso an-old.tmac
+. do rm TH \" force reinitialization of an.tmac
+. do mso an.tmac
.
. do als Dd reload-doc
.
diff --git a/tmac/man.tmac b/tmac/man.tmac
index c188f394e..b017e5afd 100644
--- a/tmac/man.tmac
+++ b/tmac/man.tmac
@@ -2,4 +2,4 @@
.\"
.\" man.tmac
.\"
-.do mso andoc.tmac
+.do mso an.tmac
diff --git a/tmac/tests/andoc_flush-between-packages.sh b/tmac/tests/andoc_flush-between-packages.sh
index 86203bfee..6447d2e3c 100755
--- a/tmac/tests/andoc_flush-between-packages.sh
+++ b/tmac/tests/andoc_flush-between-packages.sh
@@ -49,7 +49,7 @@ man\-flush-test2 \- a second sanity test for groff_man(7)
This supernumerary loquacious sentence should end up with a
partially-collected output line.'
-OUTPUT=$(printf "%s\n" "$EXAMPLE" | "$groff" -Tascii -P-cbou -man)
+OUTPUT=$(printf "%s\n" "$EXAMPLE" | "$groff" -Tascii -P-cbou -mandoc)
FAIL=
diff --git a/tmac/tmac.am b/tmac/tmac.am
index e966b439f..8c0c533f8 100644
--- a/tmac/tmac.am
+++ b/tmac/tmac.am
@@ -251,7 +251,7 @@ tmac/stamp-wrap:
for m in ""$(tmac_wrap); do \
$(RM) $(top_builddir)/tmac/$$m-wrap; \
if test "$$m" = an; then \
- echo .do mso andoc.tmac >>$(top_builddir)/tmac/$$m-wrap; \
+ echo .do mso an.tmac >>$(top_builddir)/tmac/$$m-wrap; \
fi; \
echo .cp 1 >>$(top_builddir)/tmac/$$m-wrap; \
echo .so $(sys_tmac_prefix)$$m >>$(top_builddir)/tmac/$$m-wrap; \