summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-07-05 09:33:02 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-07-05 09:33:02 +0000
commitefe350390b3c05f914ca4cc6f33f97842a2d2e79 (patch)
tree8943fc1674c7809be3ba47aa6a58363ee7ba8e36
parent18003a6408dddfa38fda8ae4eecc43ff5cd1cc55 (diff)
downloadmandoc-efe350390b3c05f914ca4cc6f33f97842a2d2e79.tar.gz
Simple partial sync with OpenBSD:
* Again accept suffixes on the name of the whatis utility. * The usage line for whatis must not invite expressions. * Revert the argument names in the SYNOPSIS back to the usual ones. * Revert a few gratuitious changes regarding line breaks etc.
-rw-r--r--apropos.18
-rw-r--r--apropos.c20
2 files changed, 14 insertions, 14 deletions
diff --git a/apropos.1 b/apropos.1
index a347cc5c..542c1e7c 100644
--- a/apropos.1
+++ b/apropos.1
@@ -24,8 +24,8 @@
.Sh SYNOPSIS
.Nm
.Op Fl C Ar file
-.Op Fl M Ar manpath
-.Op Fl m Ar manpath
+.Op Fl M Ar path
+.Op Fl m Ar path
.Op Fl S Ar arch
.Op Fl s Ar section
.Ar expression ...
@@ -60,13 +60,13 @@ Specify an alternative configuration
in
.Xr man.conf 5
format.
-.It Fl M Ar manpath
+.It Fl M Ar path
Use the colon-separated path instead of the default list of paths
searched for
.Xr mandocdb 8
databases.
Invalid paths, or paths without manual databases, are ignored.
-.It Fl m Ar manpath
+.It Fl m Ar path
Prepend the colon-separated paths to the list of paths searched
for
.Xr mandocdb 8
diff --git a/apropos.c b/apropos.c
index dc7b5f48..cd97e779 100644
--- a/apropos.c
+++ b/apropos.c
@@ -37,8 +37,9 @@ main(int argc, char *argv[])
struct mansearch search;
size_t i, sz;
struct manpage *res;
- char *conf_file, *defpaths, *auxpaths;
struct manpaths paths;
+ char *defpaths, *auxpaths;
+ char *conf_file;
char *progname;
extern char *optarg;
extern int optind;
@@ -49,10 +50,13 @@ main(int argc, char *argv[])
else
++progname;
- auxpaths = defpaths = conf_file = NULL;
+ whatis = (0 == strncmp(progname, "whatis", 6));
+
memset(&paths, 0, sizeof(struct manpaths));
memset(&search, 0, sizeof(struct mansearch));
- whatis = (0 == strcmp(progname, "whatis"));
+
+ auxpaths = defpaths = NULL;
+ conf_file = NULL;
while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))
switch (ch) {
@@ -99,12 +103,8 @@ main(int argc, char *argv[])
free(res);
return(sz ? EXIT_SUCCESS : EXIT_FAILURE);
usage:
- fprintf(stderr, "usage: %s [-C conf] "
- "[-M paths] "
- "[-m paths] "
- "[-S arch] "
- "[-s section] "
- "expr ...\n",
- progname);
+ fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
+ "[-S arch] [-s section]%s ...\n", progname,
+ whatis ? " name" : "\n expression");
return(EXIT_FAILURE);
}