| Summary: | man outputs footer only page as first page. | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | mori <mori> | ||||
| Component: | conf | Assignee: | mpp | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | 3.3-STABLE | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
mori
1999-09-23 12:20:00 UTC
Oops, that's pretty nasty. I can't say that I completely understand
groff's behavior in this case, but I have a patch that I like better;
it retains the elimination of the duplication of "FreeBSD" and the
version numbers. Would you mind trying this one and seeing if it
works for you?
Bill
Index: doc-common
===================================================================
RCS file: /home/ncvs/src/contrib/groff/tmac/doc-common,v
retrieving revision 1.10.2.4
diff -u -r1.10.2.4 doc-common
--- doc-common 1999/09/07 12:58:48 1.10.2.4
+++ doc-common 1999/09/23 16:13:07
@@ -228,31 +228,32 @@
. if "\\*(oS"Null" .tm Unknown BSD version ``\\$2'' at line \\n(c.
.\}
.if "\\$1"FreeBSD" \{\
-. if "\\$2"2" .ds oS FreeBSD 2.0
-. ie \\n(.$==1 \c
-. el .ie "\\$2"1.0" \c
-. el .ie "\\$2"1.1" \c
-. el .ie "\\$2"1.1.5" \c
-. el .ie "\\$2"1.1.5.1" \c
-. el .ie "\\$2"2" \c
-. el .ie "\\$2"2.0" \c
-. el .ie "\\$2"2.0.5" \c
-. el .ie "\\$2"2.1" \c
-. el .ie "\\$2"2.1.5" \c
-. el .ie "\\$2"2.1.6" \c
-. el .ie "\\$2"2.1.7" \c
-. el .ie "\\$2"2.2" \c
-. el .ie "\\$2"2.2.1" \c
-. el .ie "\\$2"2.2.2" \c
-. el .ie "\\$2"2.2.5" \c
-. el .ie "\\$2"2.2.6" \c
-. el .ie "\\$2"2.2.7" \c
-. el .ie "\\$2"2.2.8" \c
-. el .ie "\\$2"3.0" \c
-. el .ie "\\$2"3.1" \c
-. el .ie "\\$2"3.2" \c
-. el .ie "\\$2"3.3" \c
-. el .ie "\\$2"4.0" \c
+. ie "\\$2"2" .ds oS FreeBSD 2.0
+. el .ds oS FreeBSD \\$2
+. ie \\n(.$==1 .
+. el .ie "\\$2"1.0" .
+. el .ie "\\$2"1.1" .
+. el .ie "\\$2"1.1.5" .
+. el .ie "\\$2"1.1.5.1" .
+. el .ie "\\$2"2" .
+. el .ie "\\$2"2.0" .
+. el .ie "\\$2"2.0.5" .
+. el .ie "\\$2"2.1" .
+. el .ie "\\$2"2.1.5" .
+. el .ie "\\$2"2.1.6" .
+. el .ie "\\$2"2.1.7" .
+. el .ie "\\$2"2.2" .
+. el .ie "\\$2"2.2.1" .
+. el .ie "\\$2"2.2.2" .
+. el .ie "\\$2"2.2.5" .
+. el .ie "\\$2"2.2.6" .
+. el .ie "\\$2"2.2.7" .
+. el .ie "\\$2"2.2.8" .
+. el .ie "\\$2"3.0" .
+. el .ie "\\$2"3.1" .
+. el .ie "\\$2"3.2" .
+. el .ie "\\$2"3.3" .
+. el .ie "\\$2"4.0" .
. el .tm Unknown FreeBSD version ``\\$2'' at line \\n(c.
.\}
.if "\\*(oS"Null" \{\
Responsible Changed From-To: freebsd-bugs->mpp I'm sure Mike will want to have a look at this one. State Changed From-To: open->closed This was fixed by rev 1.20 of contrib/groff/tmac/doc-common. |