summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2021-09-04 20:26:43 +0000
committerIngo Schwarze <schwarze@openbsd.org>2021-09-04 20:26:43 +0000
commit4e2a28a84bba32864fc4fc429fe4150833e02da4 (patch)
tree310057bbbd85618b48c281bbb23a46ffa949ec4a
parent0882dc0b36dd3ae4623b9707ee964e7ca83ae665 (diff)
downloadmandoc-4e2a28a84bba32864fc4fc429fe4150833e02da4.tar.gz
mdoc(7): improve output of .At 32v
The official designation by AT&T was "UNIX/32V", so use that in the output. That also makes sense because "system/architecture" is a widespread convention to refer to the port of an operating system to a specific architecture, in this case 32V (32bit DEC VAX). The former wording "Version 32V AT&T UNIX" was misleading because 32V is not a version number. Even though UNIX/32V was not officially designated as Version 7 by AT&T, prepend "Version 7" because it was in fact a straightforward port of Version 7 AT&T UNIX. That makes it easier to understand for 21st century readers of manual pages. Suggested by nabijaczleweli at nabijaczleweli dot xyz. Same change as in GNU troff commit 21d30728. OK G dot Branden dot Robinson at gmail dot com (gbranden@ in groff)
-rw-r--r--att.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/att.c b/att.c
index ea04c0bb..d485780b 100644
--- a/att.c
+++ b/att.c
@@ -37,7 +37,7 @@ mdoc_a2att(const char *p)
LINE("v5", "Version\\~5 AT&T UNIX");
LINE("v6", "Version\\~6 AT&T UNIX");
LINE("v7", "Version\\~7 AT&T UNIX");
- LINE("32v", "Version\\~32V AT&T UNIX");
+ LINE("32v", "Version\\~7 AT&T UNIX/32V");
LINE("III", "AT&T System\\~III UNIX");
LINE("V", "AT&T System\\~V UNIX");
LINE("V.1", "AT&T System\\~V Release\\~1 UNIX");