From dd7c4e51044ce779cb695d6b52bbba0982a42e28 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 22 Jul 2020 20:03:29 -0400 Subject: fontsrv(4): update man page for size of fontsrv subfonts Fixes #432. --- man/man4/fontsrv.4 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'man/man4/fontsrv.4') diff --git a/man/man4/fontsrv.4 b/man/man4/fontsrv.4 index 3fb0d66b..2ba7f2c1 100644 --- a/man/man4/fontsrv.4 +++ b/man/man4/fontsrv.4 @@ -31,13 +31,13 @@ and posted at (default .IR font ). .PP -The +The .B -p -option changes +option changes .IR fontsrv 's behavior: rather than serve a file system, .I fontsrv -prints to standard output the contents of the named +prints to standard output the contents of the named .IR path . If .I path @@ -66,19 +66,19 @@ Each size directory contains a file and subfont files named .BR x0000.bit , -.BR x0100.bit , +.BR x0020.bit , and so on -representing 256-character Unicode ranges. +representing 32-character Unicode ranges. .PP .I Openfont (see .IR graphics (3)) -recognizes font paths beginning with +recognizes font paths beginning with .B /mnt/font and implements them by invoking .IR fontsrv ; it need not be running already. -See +See .IR font (7) for a full discussion of font name syntaxes. .SH EXAMPLES @@ -95,7 +95,7 @@ or: % fontsrv -p . .EE .LP -Run +Run .IR acme (1) using the operating system's Monaco as the fixed-width font: .IP -- cgit v1.2.3 From 977b25a76ae8263e53fb4eb1abfc395769f23e3d Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 13 Aug 2020 23:41:59 -0400 Subject: tmac: introduce real manual reference macro instead of overloading IR The overloading of IR emits magic \X'...' sequences that turn into HTML manual links. But not all such IR invocations should be manual links; those had to be written to avoid the IR macro before. Worse, the \X'...' ending the IR causes troff to emit only a single space after a period. Defining a new IM macro for manual references fixes both problems. Fixes #441. --- man/man4/fontsrv.4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'man/man4/fontsrv.4') diff --git a/man/man4/fontsrv.4 b/man/man4/fontsrv.4 index 2ba7f2c1..a270b2f1 100644 --- a/man/man4/fontsrv.4 +++ b/man/man4/fontsrv.4 @@ -20,7 +20,7 @@ fontsrv \- file system access to host fonts presents the host window system's fonts in the standard Plan 9 format (see -.IR font (7)). +.IM font (7) ). It serves a virtual directory tree mounted at .I mtpt (if the @@ -72,14 +72,14 @@ representing 32-character Unicode ranges. .PP .I Openfont (see -.IR graphics (3)) +.IM graphics (3) ) recognizes font paths beginning with .B /mnt/font and implements them by invoking .IR fontsrv ; it need not be running already. See -.IR font (7) +.IM font (7) for a full discussion of font name syntaxes. .SH EXAMPLES List the fonts on the system: @@ -96,7 +96,7 @@ or: .EE .LP Run -.IR acme (1) +.IM acme (1) using the operating system's Monaco as the fixed-width font: .IP .EX @@ -104,7 +104,7 @@ using the operating system's Monaco as the fixed-width font: .EE .LP Run -.IR sam (1) +.IM sam (1) using the same font: .IP .EX @@ -113,7 +113,7 @@ using the same font: .SH SOURCE .B \*9/src/cmd/fontsrv .SH SEE ALSO -.IR font (7) +.IM font (7) .SH BUGS .PP Due to OS X restrictions, -- cgit v1.2.3 From d32deab17bfffa5bffc5fab3e6577558e40888c5 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sat, 15 Aug 2020 20:07:38 -0400 Subject: tmac: rename IM (italic manual) to MR (manual reference) Suggested by G. Brandon Robinson. --- man/man4/fontsrv.4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'man/man4/fontsrv.4') diff --git a/man/man4/fontsrv.4 b/man/man4/fontsrv.4 index a270b2f1..6cc0d0a7 100644 --- a/man/man4/fontsrv.4 +++ b/man/man4/fontsrv.4 @@ -20,7 +20,7 @@ fontsrv \- file system access to host fonts presents the host window system's fonts in the standard Plan 9 format (see -.IM font (7) ). +.MR font (7) ). It serves a virtual directory tree mounted at .I mtpt (if the @@ -72,14 +72,14 @@ representing 32-character Unicode ranges. .PP .I Openfont (see -.IM graphics (3) ) +.MR graphics (3) ) recognizes font paths beginning with .B /mnt/font and implements them by invoking .IR fontsrv ; it need not be running already. See -.IM font (7) +.MR font (7) for a full discussion of font name syntaxes. .SH EXAMPLES List the fonts on the system: @@ -96,7 +96,7 @@ or: .EE .LP Run -.IM acme (1) +.MR acme (1) using the operating system's Monaco as the fixed-width font: .IP .EX @@ -104,7 +104,7 @@ using the operating system's Monaco as the fixed-width font: .EE .LP Run -.IM sam (1) +.MR sam (1) using the same font: .IP .EX @@ -113,7 +113,7 @@ using the same font: .SH SOURCE .B \*9/src/cmd/fontsrv .SH SEE ALSO -.IM font (7) +.MR font (7) .SH BUGS .PP Due to OS X restrictions, -- cgit v1.2.3