summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/1/emu22
-rw-r--r--man/1/man39
-rw-r--r--man/2/INDEX1
-rw-r--r--man/2/complete83
-rw-r--r--man/3/cmd8
-rw-r--r--man/index85
6 files changed, 229 insertions, 9 deletions
diff --git a/man/1/emu b/man/1/emu
index 8f0e794d..54451ee5 100644
--- a/man/1/emu
+++ b/man/1/emu
@@ -119,7 +119,7 @@ will serve as its root.
The default value is
.B /usr/inferno
on most systems, but
-.BR \eusers\einferno
+.BR \einferno
on Windows.
.TP
.B \-s
@@ -180,6 +180,26 @@ Print version data: edition and revision date.
Options may also be set in the host operating system's environment variable
.BR EMU ;
they are overridden by options supplied on the command line.
+.PP
+.I Emu
+finds the host system directory that will serve as its Inferno root directory
+as the last value found as follows:
+it is the value built-in to the executable, by default; or
+the value of the host system's environment variable
+.BR INFERNO ;
+or the value of the environment variable
+.BR ROOT ;
+or the value of a
+.B -r
+option in the environment variable
+.BR EMU ;
+or the
+.I rootpath
+set by a
+.B -r
+option to the
+.I emu
+command itself.
.SH EXAMPLE
To start
.B wm/logon
diff --git a/man/1/man b/man/1/man
index f9138900..4c25f40c 100644
--- a/man/1/man
+++ b/man/1/man
@@ -5,6 +5,17 @@ print or find manual pages
.SH SYNOPSIS
.B man
[
+.B -b
+] [
+.B -n
+] [
+.B -p
+] [
+.B -S
+] [
+.B -w
+]
+[
.I section ...
]
.I title ...
@@ -81,6 +92,30 @@ some detail is lost in conversion to plain text.
displays the pages in a graphical Wm window, providing a more faithful
reproduction of the intended layout.
.PP
+.I Man
+also accepts the following options:
+.TP
+.B -b
+Print the pages and send them to
+.IR plumber (1)
+for display in an editor.
+.TP
+.B -n
+Use
+.I man2txt
+to format the pages (default).
+.TP
+.B -p
+Display the pages using
+.IR wm/man .
+.TP
+.B -S
+Do not search the manual indices for the names: only print pages whose file names match the
+.IR titles .
+.TP
+.B -w
+Print the names of the man page source files instead of formatting them.
+.PP
.I Man2html
converts
.B "troff -man"
@@ -151,7 +186,9 @@ index.
.SH SOURCE
.B /appl/wm/man.b
.br
-.B /appl/cmd/man.b
+.B /dis/man
+.IR sh (1)
+script
.br
.B /appl/cmd/man2txt.b
.br
diff --git a/man/2/INDEX b/man/2/INDEX
index f12f0d3a..a0bd047b 100644
--- a/man/2/INDEX
+++ b/man/2/INDEX
@@ -17,6 +17,7 @@ cfg cfg
record cfg
tuple cfg
command command
+complete complete
btos convcs
convcs convcs
stob convcs
diff --git a/man/2/complete b/man/2/complete
new file mode 100644
index 00000000..19fab2e5
--- /dev/null
+++ b/man/2/complete
@@ -0,0 +1,83 @@
+.TH COMPLETE 2
+.SH NAME
+complete \- file name completion
+.SH SYNOPSIS
+.EX
+include "complete.m";
+complete := load Complete Complete->PATH;
+
+Completion: adt {
+ advance: int; # whether forward progress has been made
+ complete: int; # whether the completion now represents a file or directory
+ str: string; # string to advance, suffixed " " (file) or "/" (directory)
+ nmatch: int; # number of files that matched
+ filename: array of string; # their names
+};
+
+init: fn();
+complete: fn(dir, s: string): (ref Completion, string);
+.EX
+.SH DESCRIPTION
+.B Complete
+implements file name completion.
+.PP
+.B Init
+must be called before any other operation of the module.
+.PP
+Given a directory
+.I dir
+and a string
+.IR s ,
+.B complete
+returns a tuple
+.BI ( c,\ err ),
+where
+.I c
+is an analysis of the file names in that directory that begin with the string
+.IR s .
+The field
+.B nmatch
+will be set to the number of files that match the prefix and
+.B filename
+will be filled in with their names.
+If the file named is a directory, a slash character will be appended to it.
+On an error,
+.I c
+is nil and
+.I err
+is a diagnostic string.
+.PP
+If no files match the string,
+.B nmatch
+will be zero, but
+.I complete
+will return the full set of files in the directory.
+.PP
+The flag
+.B advance
+reports whether the string
+.I s
+can be extended without changing the set of files that match. If true,
+.B str
+will be set to the extension; that is, the value of
+.B str
+may be appended to
+.I s
+by the caller to extend the embryonic file name unambiguously.
+.PP
+The flag
+.B complete
+reports whether the extended file name uniquely identifies a file.
+If true,
+.B str
+will be suffixed with a blank, or a slash and a blank,
+depending on whether the resulting file name identifies a plain file or a directory.
+.SH SOURCE
+.B /appl/lib/complete.b
+.SH SEE ALSO
+.IR names (2)
+.SH DIAGNOSTICS
+The
+.I complete
+function returns a nil reference and a diagnostic string
+if the directory is unreadable or there is some other error.
diff --git a/man/3/cmd b/man/3/cmd
index 52a3e191..4f051f4d 100644
--- a/man/3/cmd
+++ b/man/3/cmd
@@ -28,9 +28,10 @@ that contains a
.B clone
file and zero or more numbered directories.
Each directory represents a distinct connection to the host's command interpreter.
-The directory contains four files:
+The directory contains five files:
.BR ctl ,
.BR data ,
+.BR stderr ,
.B status
and
.BR wait ,
@@ -119,6 +120,9 @@ the command will see the host equivalent of `end of file'.
The
.B stderr
file provides a similar read-only connection to the error output from the command.
+If the
+.B stderr
+file is not opened, the error output will be discarded.
.PP
Once started, a host command runs until it terminates or until it is killed,
by using the
@@ -269,8 +273,6 @@ name to prevent its interpretation as a command option.)
.SH "SEE ALSO"
.IR emu (1),
.IR os (1)
-.SH BUGS
-Standard output and standard error ideally should not be mingled.
.SH DIAGNOSTICS
A
.B write
diff --git a/man/index b/man/index
index ed82db44..4c36d742 100644
--- a/man/index
+++ b/man/index
@@ -383,6 +383,7 @@ accepts /man/1/crypt
accepts /man/1/dmview
accepts /man/1/du
accepts /man/1/grid-monitor
+accepts /man/1/man
accepts /man/1/mash
accepts /man/1/mdb
accepts /man/1/sh
@@ -1379,6 +1380,7 @@ adt /man/2/asn1
adt /man/2/attrdb
adt /man/2/bufio
adt /man/2/cfg
+adt /man/2/complete
adt /man/2/crc
adt /man/2/daytime
adt /man/2/dbm
@@ -1463,6 +1465,7 @@ adts /man/2/w3c-css
adts /man/6/sbl
adts /man/8/httpd
adv7176 /man/3/vid
+advance /man/2/complete
advance /man/2/sys-0intro
advanced /man/1/deb
advanced /man/10/plan9.ini
@@ -2200,6 +2203,7 @@ analyse /man/1/yacc
analyse /man/3/kprof
analyser /man/1/yacc
analysis /man/1/blur
+analysis /man/2/complete
analysis /man/2/math-0intro
aname /man/1/alphabet-main
aname /man/1/listen
@@ -2411,6 +2415,7 @@ appended /man/1/tee
appended /man/1/wm-sh
appended /man/10/9load
appended /man/10/c2l
+appended /man/2/complete
appended /man/2/security-0intro
appended /man/2/tk
appended /man/3/ssl
@@ -2586,6 +2591,7 @@ appl /man/2/attrdb
appl /man/2/bloomfilter
appl /man/2/bufio
appl /man/2/cfg
+appl /man/2/complete
appl /man/2/convcs
appl /man/2/crc
appl /man/2/csv
@@ -3325,6 +3331,7 @@ array /man/2/asn1
array /man/2/bloomfilter
array /man/2/bufio
array /man/2/bufio-chanfill
+array /man/2/complete
array /man/2/convcs
array /man/2/crc
array /man/2/dbm
@@ -5322,6 +5329,7 @@ blank /man/10/conf
blank /man/10/mk
blank /man/10/parsecmd
blank /man/10/readnum
+blank /man/2/complete
blank /man/2/string
blank /man/3/cons
blank /man/3/draw
@@ -6216,7 +6224,6 @@ bugs /man/2/venti
bugs /man/2/virgil
bugs /man/2/xml
bugs /man/3/audio
-bugs /man/3/cmd
bugs /man/3/cons
bugs /man/3/dbg
bugs /man/3/draw
@@ -6309,6 +6316,7 @@ builds /man/3/ds
builds /man/8/srv
built /man/1/acme
built /man/1/charon
+built /man/1/emu
built /man/1/mash
built /man/1/mash-make
built /man/1/mc
@@ -6849,6 +6857,7 @@ caller /man/10/qio
caller /man/10/qlock
caller /man/10/sleep
caller /man/2/command
+caller /man/2/complete
caller /man/2/factotum
caller /man/2/ir
caller /man/2/math-fp
@@ -7654,6 +7663,7 @@ character /man/2/alphabet-intro
character /man/2/asn1
character /man/2/bufio
character /man/2/cfg
+character /man/2/complete
character /man/2/convcs
character /man/2/csv
character /man/2/debug
@@ -9413,6 +9423,7 @@ complete /man/10/styx
complete /man/10ti925/epocimg
complete /man/10ti925/tihost
complete /man/2/asn1
+complete /man/2/complete
complete /man/2/registries
complete /man/2/spree-cardlib
complete /man/2/styx
@@ -9428,6 +9439,8 @@ complete /man/5/attach
complete /man/6/sexprs
complete /man/9/canvas
complete /man/9/text
+complete.b /man/2/complete
+complete.m /man/2/complete
completed /man/1/alphabet-main
completed /man/1/blur
completed /man/1/sh
@@ -9466,6 +9479,7 @@ completion /man/1/cprof
completion /man/1/mprof
completion /man/1/prof
completion /man/1/sh
+completion /man/2/complete
completion /man/8/applylog
completion /man/8/register
complex /man/1/acme
@@ -15365,6 +15379,7 @@ diagnostic /man/1/tsort
diagnostic /man/1/yacc
diagnostic /man/2/alphabet-intro
diagnostic /man/2/attrdb
+diagnostic /man/2/complete
diagnostic /man/2/dbm
diagnostic /man/2/debug
diagnostic /man/2/dhcpclient
@@ -15430,6 +15445,7 @@ diagnostics /man/10/ref
diagnostics /man/10/sleep
diagnostics /man/2/alphabet-intro
diagnostics /man/2/bufio
+diagnostics /man/2/complete
diagnostics /man/2/dbm
diagnostics /man/2/diskblocks
diagnostics /man/2/draw-image
@@ -15721,6 +15737,7 @@ dir /man/10/dev
dir /man/10/devattach
dir /man/10/styx
dir /man/10/styxserver
+dir /man/2/complete
dir /man/2/dbm
dir /man/2/debug
dir /man/2/dividers
@@ -16013,6 +16030,7 @@ directory /man/10/odbc
directory /man/10/srclist
directory /man/10/styx
directory /man/10/styxserver
+directory /man/2/complete
directory /man/2/dbm
directory /man/2/debug
directory /man/2/dhcpclient
@@ -16306,6 +16324,7 @@ discarded /man/10/allocb
discarded /man/10/qio
discarded /man/2/bufio
discarded /man/2/spree-gather
+discarded /man/3/cmd
discarded /man/3/eia
discarded /man/3/pbus
discarded /man/6/ubfa
@@ -17652,6 +17671,7 @@ editor /man/1/brutus
editor /man/1/cook
editor /man/1/diff
editor /man/1/ftree
+editor /man/1/man
editor /man/1/mdb
editor /man/1/wm-misc
editor /man/8/prep
@@ -17928,6 +17948,7 @@ embedded /man/9/text
embedded /man/9/types
embodied /man/4/factotum
emboldened /man/1/brutus
+embryonic /man/2/complete
emerge /man/3/tinyfs
emitted /man/1/yacc
employ /man/1/acme
@@ -18974,6 +18995,7 @@ err /man/1/yacc
err /man/10/dynld
err /man/2/asn1
err /man/2/attrdb
+err /man/2/complete
err /man/2/debug
err /man/2/dhcpclient
err /man/2/format
@@ -19066,6 +19088,7 @@ error /man/2/attrdb
error /man/2/bloomfilter
error /man/2/bufio
error /man/2/cfg
+error /man/2/complete
error /man/2/convcs
error /man/2/csv
error /man/2/dbm
@@ -19907,6 +19930,7 @@ exec /man/3/cmd
exec /man/3/ip
execprint /man/2/sh
executable /man/1/deb
+executable /man/1/emu
executable /man/1/ftest
executable /man/1/sh
executable /man/1/sh-file2chan
@@ -20691,12 +20715,14 @@ extant /man/8/prep
extend /man/1/disdep
extend /man/1/mc
extend /man/10/eve
+extend /man/2/complete
extend /man/2/dhcpclient
extend /man/4/factotum
extended /man/1/0intro
extended /man/1/acme
extended /man/1/limbo
extended /man/10/9load
+extended /man/2/complete
extended /man/2/disks
extended /man/2/spki
extended /man/2/w3c-css
@@ -20725,6 +20751,7 @@ extension /man/1/idea
extension /man/1/mash
extension /man/10/2c
extension /man/10/a.out
+extension /man/2/complete
extension /man/2/spki
extension /man/2/spree
extension /man/2/tabs
@@ -21539,6 +21566,7 @@ file /man/2/bufio
file /man/2/bufio-chanfill
file /man/2/cfg
file /man/2/command
+file /man/2/complete
file /man/2/convcs
file /man/2/crc
file /man/2/csv
@@ -21840,6 +21868,7 @@ filename /man/1/uuencode
filename /man/1/wm-misc
filename /man/2/attrdb
filename /man/2/bufio
+filename /man/2/complete
filename /man/2/debug
filename /man/2/filter-deflate
filename /man/2/keyring-auth
@@ -21981,6 +22010,7 @@ files /man/2/0intro
files /man/2/alphabet-intro
files /man/2/attrdb
files /man/2/bufio
+files /man/2/complete
files /man/2/convcs
files /man/2/csv
files /man/2/dbm
@@ -22175,6 +22205,7 @@ fillbezspline /man/2/draw-image
fillbezsplineop /man/2/draw-image
filled /man/1/charon
filled /man/10/xalloc
+filled /man/2/complete
filled /man/2/draw-image
filled /man/2/prefab-element
filled /man/2/security-random
@@ -22301,6 +22332,7 @@ findpair /man/2/attrdb
finds /man/1/acme
finds /man/1/diff
finds /man/1/disdep
+finds /man/1/emu
finds /man/1/man
finds /man/1/sh-alphabet
finds /man/1/strings
@@ -22430,6 +22462,7 @@ flag /man/10/splhi
flag /man/10ti925/tihost
flag /man/2/alphabet-intro
flag /man/2/asn1
+flag /man/2/complete
flag /man/2/debug
flag /man/2/dhcpclient
flag /man/2/draw-image
@@ -22623,6 +22656,7 @@ fn /man/2/bufio
fn /man/2/bufio-chanfill
fn /man/2/cfg
fn /man/2/command
+fn /man/2/complete
fn /man/2/convcs
fn /man/2/crc
fn /man/2/csv
@@ -22976,6 +23010,7 @@ format /man/1/gettar
format /man/1/gzip
format /man/1/itest
format /man/1/ls
+format /man/1/man
format /man/1/mash
format /man/1/mash-make
format /man/1/mdb
@@ -23165,6 +23200,7 @@ formatted /man/9/bind
formatter /man/1/fmt
formatter /man/8/ftl
formatting /man/1/brutus
+formatting /man/1/man
formatting /man/1/tktester
formatting /man/10/2c
formatting /man/10/print
@@ -23257,6 +23293,7 @@ forward /man/1/dd
forward /man/1/ebook
forward /man/1/mux
forward /man/1/wm-misc
+forward /man/2/complete
forward /man/2/debug
forward /man/2/ir
forward /man/2/stringinttab
@@ -23526,6 +23563,7 @@ full /man/10/qio
full /man/10/rune
full /man/10/styx
full /man/2/asn1
+full /man/2/complete
full /man/2/debug
full /man/2/dhcpclient
full /man/2/ip
@@ -25395,7 +25433,6 @@ ideaecb /man/2/keyring-crypt
ideaecb /man/3/ssl
ideal /man/9/bind
ideally /man/10/dev
-ideally /man/3/cmd
ideas /man/1/0intro
ideas /man/9/canvas
ideas /man/9/grid
@@ -25489,6 +25526,7 @@ identifies /man/10/devattach
identifies /man/10/mk
identifies /man/10/plan9.ini
identifies /man/2/asn1
+identifies /man/2/complete
identifies /man/2/draw-font
identifies /man/2/palmfile
identifies /man/2/prefab-0intro
@@ -25990,6 +26028,7 @@ implements /man/1/sh
implements /man/1/sh-alphabet
implements /man/1/sh-file2chan
implements /man/1/sh-string
+implements /man/2/complete
implements /man/2/debug
implements /man/2/dhcpclient
implements /man/2/filter-deflate
@@ -26198,6 +26237,7 @@ include /man/2/bufio
include /man/2/bufio-chanfill
include /man/2/cfg
include /man/2/command
+include /man/2/complete
include /man/2/convcs
include /man/2/crc
include /man/2/csv
@@ -26807,6 +26847,7 @@ indicatoron /man/9/radiobutton
indicators /man/1/tktester
indicators /man/10/atoi
indicators /man/9/menu
+indices /man/1/man
indices /man/1/sh-string
indices /man/10/2c
indices /man/10/c2l
@@ -27104,6 +27145,7 @@ init /man/2/bloomfilter
init /man/2/bufio-chanfill
init /man/2/cfg
init /man/2/command
+init /man/2/complete
init /man/2/convcs
init /man/2/crc
init /man/2/csv
@@ -27877,6 +27919,7 @@ int /man/2/bufio
int /man/2/bufio-chanfill
int /man/2/cfg
int /man/2/command
+int /man/2/complete
int /man/2/convcs
int /man/2/crc
int /man/2/daytime
@@ -30704,6 +30747,7 @@ lib /man/2/attrdb
lib /man/2/bloomfilter
lib /man/2/bufio
lib /man/2/cfg
+lib /man/2/complete
lib /man/2/convcs
lib /man/2/crc
lib /man/2/csv
@@ -31675,6 +31719,7 @@ load /man/2/bufio
load /man/2/bufio-chanfill
load /man/2/cfg
load /man/2/command
+load /man/2/complete
load /man/2/convcs
load /man/2/crc
load /man/2/csv
@@ -33102,6 +33147,7 @@ match /man/1/fs
match /man/1/grep
match /man/1/grid-query
match /man/1/look
+match /man/1/man
match /man/1/mash
match /man/1/mash-make
match /man/1/mk
@@ -33112,6 +33158,7 @@ match /man/10/dynld
match /man/10/mk
match /man/10/plan9.ini
match /man/2/asn1
+match /man/2/complete
match /man/2/filepat
match /man/2/filter
match /man/2/keyring-0intro
@@ -33144,6 +33191,7 @@ matched /man/1/mk
matched /man/1/sh
matched /man/1/sh-regex
matched /man/10/mk
+matched /man/2/complete
matched /man/2/keyring-0intro
matched /man/2/keyset
matched /man/2/regex
@@ -34021,7 +34069,6 @@ minded /man/1/wm-misc
mindx /man/2/wmclient
mindy /man/2/wmclient
mine /man/1/wm-misc
-mingled /man/3/cmd
mini /man/1/ebook
miniaturise /man/1/sh-tk
minimal /man/4/kfs
@@ -34524,6 +34571,7 @@ module /man/2/bloomfilter
module /man/2/bufio
module /man/2/cfg
module /man/2/command
+module /man/2/complete
module /man/2/convcs
module /man/2/crc
module /man/2/csv
@@ -35264,6 +35312,7 @@ names /man/2/0intro
names /man/2/arg
names /man/2/cfg
names /man/2/command
+names /man/2/complete
names /man/2/convcs
names /man/2/dhcpclient
names /man/2/dis
@@ -36103,6 +36152,7 @@ nil /man/2/attrdb
nil /man/2/bufio
nil /man/2/cfg
nil /man/2/command
+nil /man/2/complete
nil /man/2/convcs
nil /man/2/csv
nil /man/2/dbm
@@ -36215,6 +36265,7 @@ nl /man/2/sh
nlab /man/6/dis
nlines /man/1/tail
nm /man/10/inm
+nmatch /man/2/complete
nmembers /man/2/spree-cardlib
nname /man/10/dev
nname /man/10/devattach
@@ -37689,6 +37740,7 @@ operation /man/10/dmainit
operation /man/10/plan9.ini
operation /man/10/qio
operation /man/10/styxserver
+operation /man/2/complete
operation /man/2/csv
operation /man/2/dbm
operation /man/2/dhcpclient
@@ -38180,6 +38232,7 @@ options /man/1/lc
options /man/1/limbo
options /man/1/look
options /man/1/ls
+options /man/1/man
options /man/1/math-misc
options /man/1/mk
options /man/1/mprof
@@ -39843,6 +39896,7 @@ path /man/2/bufio
path /man/2/bufio-chanfill
path /man/2/cfg
path /man/2/command
+path /man/2/complete
path /man/2/convcs
path /man/2/crc
path /man/2/csv
@@ -40758,6 +40812,7 @@ plain /man/1/cp
plain /man/1/man
plain /man/1/wish
plain /man/10/print
+plain /man/2/complete
plain /man/2/disks
plain /man/2/keyring-ipint
plain /man/2/rfc822
@@ -40915,6 +40970,7 @@ plumbed /man/2/plumbmsg
plumbed /man/8/plumber
plumber /man/1/brutus
plumber /man/1/ftree
+plumber /man/1/man
plumber /man/1/plumb
plumber /man/1/wm-misc
plumber /man/1/wm-sh
@@ -41575,6 +41631,7 @@ prefix /man/10/panic
prefix /man/2/0intro
prefix /man/2/alphabet-intro
prefix /man/2/asn1
+prefix /man/2/complete
prefix /man/2/disks
prefix /man/2/ip
prefix /man/2/names
@@ -42751,6 +42808,7 @@ programs /man/9/0intro
programs /man/9/text
progress /man/1/charon
progress /man/1/webgrab
+progress /man/2/complete
progress /man/2/tftp
progresses /man/1/charon
projecting /man/9/canvas
@@ -45228,6 +45286,7 @@ ref /man/2/bufio
ref /man/2/bufio-chanfill
ref /man/2/cfg
ref /man/2/command
+ref /man/2/complete
ref /man/2/crc
ref /man/2/csv
ref /man/2/daytime
@@ -45394,6 +45453,7 @@ reference /man/2/alphabet-intro
reference /man/2/asn1
reference /man/2/attrdb
reference /man/2/bufio
+reference /man/2/complete
reference /man/2/convcs
reference /man/2/dbm
reference /man/2/devpointer
@@ -46483,6 +46543,7 @@ reports /man/1/time
reports /man/10/mk
reports /man/10/styx
reports /man/2/alphabet-intro
+reports /man/2/complete
reports /man/3/cons
reports /man/4/iostats
reports /man/5/read
@@ -46682,6 +46743,7 @@ represents /man/10/qlock
represents /man/10/styxserver
represents /man/2/asn1
represents /man/2/attrdb
+represents /man/2/complete
represents /man/2/convcs
represents /man/2/debug
represents /man/2/dis
@@ -47458,6 +47520,7 @@ resulting /man/2/0intro
resulting /man/2/alphabet-intro
resulting /man/2/asn1
resulting /man/2/bufio
+resulting /man/2/complete
resulting /man/2/diskblocks
resulting /man/2/disks
resulting /man/2/draw-image
@@ -47658,6 +47721,7 @@ return /man/2/bufio
return /man/2/bufio-chanfill
return /man/2/cfg
return /man/2/command
+return /man/2/complete
return /man/2/convcs
return /man/2/csv
return /man/2/dbm
@@ -47956,6 +48020,7 @@ returns /man/2/attrdb
returns /man/2/bloomfilter
returns /man/2/bufio-chanfill
returns /man/2/cfg
+returns /man/2/complete
returns /man/2/convcs
returns /man/2/crc
returns /man/2/csv
@@ -49422,6 +49487,7 @@ search /man/1/chmod
search /man/1/disdep
search /man/1/grid-query
search /man/1/look
+search /man/1/man
search /man/1/math-misc
search /man/1/mc
search /man/1/sh
@@ -50062,6 +50128,7 @@ semiconductor /man/3/rtc
semigraphic /man/1/miniterm
send /man/1/acme
send /man/1/collab-clients
+send /man/1/man
send /man/1/plumb
send /man/1/sendmail
send /man/1/sh-tk
@@ -51884,6 +51951,7 @@ slash /man/10/2c
slash /man/10/a.out
slash /man/10/c2l
slash /man/10/mk
+slash /man/2/complete
slash /man/2/names
slash /man/2/palmfile
slash /man/2/sys-0intro
@@ -52376,6 +52444,7 @@ source /man/2/attrdb
source /man/2/bloomfilter
source /man/2/bufio
source /man/2/cfg
+source /man/2/complete
source /man/2/convcs
source /man/2/crc
source /man/2/csv
@@ -54298,6 +54367,7 @@ str /man/10/readnum
str /man/10/rune
str /man/10/strcat
str /man/10/styxserver
+str /man/2/complete
str /man/2/convcs
str /man/2/dis
str /man/2/draw-font
@@ -54465,6 +54535,7 @@ string /man/2/bloomfilter
string /man/2/bufio
string /man/2/cfg
string /man/2/command
+string /man/2/complete
string /man/2/convcs
string /man/2/csv
string /man/2/daytime
@@ -55523,6 +55594,7 @@ suffixclass /man/2/rfc822
suffixed /man/1/du
suffixed /man/1/tiny
suffixed /man/10/atoi
+suffixed /man/2/complete
suffixes /man/8/httpd
suggest /man/1/sh
suggest /man/2/dhcpclient
@@ -57660,6 +57732,7 @@ titlebar /man/2/wmclient
titlecolor /man/2/prefab-style
titled /man/1/wish
titlefont /man/2/prefab-style
+titles /man/1/man
tk /man/1/0intro
tk /man/1/cpu
tk /man/1/emu
@@ -58488,6 +58561,7 @@ tuple /man/2/asn1
tuple /man/2/attrdb
tuple /man/2/bufio-chanfill
tuple /man/2/cfg
+tuple /man/2/complete
tuple /man/2/convcs
tuple /man/2/debug
tuple /man/2/dhcpclient
@@ -59112,6 +59186,7 @@ unaffected /man/5/walk
unaffected /man/9/canvas
unallocated /man/9/pack
unaltered /man/1/wm-sh
+unambiguously /man/2/complete
uname /man/1/listen
uname /man/10/styx
uname /man/10/styxserver
@@ -59430,6 +59505,7 @@ unique /man/8/mangaload
unique /man/8/prep
unique /man/9/canvas
uniquely /man/10/intrenable
+uniquely /man/2/complete
uniquely /man/2/registries
uniquely /man/2/security-0intro
uniquely /man/2/styxservers
@@ -59699,6 +59775,7 @@ unread /man/1/wm-sh
unread /man/10/allocb
unread /man/10/qio
unread /man/8/collabsrv
+unreadable /man/2/complete
unreadable /man/2/security-0intro
unrecognised /man/2/w3c-css
unrecognized /man/10/atoi
@@ -60150,7 +60227,6 @@ usernames /man/10/eve
userpw /man/2/w3c-uris
users /man/1/0intro
users /man/1/collab-clients
-users /man/1/emu
users /man/1/secstore
users /man/1/tktester
users /man/2/secstore
@@ -60740,6 +60816,7 @@ value /man/2/asn1
value /man/2/attrdb
value /man/2/bufio
value /man/2/cfg
+value /man/2/complete
value /man/2/convcs
value /man/2/crc
value /man/2/csv