aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandocdb.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-04-03 15:37:19 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-04-03 15:37:19 +0000
commit77219a39a7d273f7e31e626a51832a2a5dde0960 (patch)
tree2615bb2891f1960932086833d056b026ff60635d /mandocdb.c
parentdbbcf4312fe517f62b905254453b4ddd1923055f (diff)
downloadmandoc-77219a39a7d273f7e31e626a51832a2a5dde0960.tar.gz
mandoc-77219a39a7d273f7e31e626a51832a2a5dde0960.tar.zst
mandoc-77219a39a7d273f7e31e626a51832a2a5dde0960.zip
The -v option of mandocdb(8) clashes with the -v option of espie@'s
makewhatis(8), which traditionally does something different, so rename it to -D (mnemonics: Debug, Dump, Display).
Diffstat (limited to 'mandocdb.c')
-rw-r--r--mandocdb.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/mandocdb.c b/mandocdb.c
index d8008e84..32f5095d 100644
--- a/mandocdb.c
+++ b/mandocdb.c
@@ -1,4 +1,4 @@
-/* $Id: mandocdb.c,v 1.124 2014/03/26 21:39:38 schwarze Exp $ */
+/* $Id: mandocdb.c,v 1.125 2014/04/03 15:37:19 schwarze Exp $ */
/*
* Copyright (c) 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -179,7 +179,7 @@ static char *progname;
static int nodb; /* no database changes */
static int mparse_options; /* abort the parse early */
static int use_all; /* use all found files */
-static int verb; /* print what we're doing */
+static int debug; /* print what we're doing */
static int warnings; /* warn about crap */
static int write_utf8; /* write UTF-8 output; else ASCII */
static int exitcode; /* to be returned by main */
@@ -357,7 +357,7 @@ main(int argc, char *argv[])
path_arg = NULL;
op = OP_DEFAULT;
- while (-1 != (ch = getopt(argc, argv, "aC:d:nQT:tu:vW")))
+ while (-1 != (ch = getopt(argc, argv, "aC:Dd:nQT:tu:W")))
switch (ch) {
case ('a'):
use_all = 1;
@@ -367,6 +367,9 @@ main(int argc, char *argv[])
path_arg = optarg;
op = OP_CONFFILE;
break;
+ case ('D'):
+ debug++;
+ break;
case ('d'):
CHECKOP(op, ch);
path_arg = optarg;
@@ -397,9 +400,6 @@ main(int argc, char *argv[])
path_arg = optarg;
op = OP_DELETE;
break;
- case ('v'):
- verb++;
- break;
case ('W'):
warnings = 1;
break;
@@ -506,10 +506,10 @@ out:
ohash_delete(&mlinks);
return(exitcode);
usage:
- fprintf(stderr, "usage: %s [-anQvW] [-C file] [-Tutf8]\n"
- " %s [-anQvW] [-Tutf8] dir ...\n"
- " %s [-nQvW] [-Tutf8] -d dir [file ...]\n"
- " %s [-nvW] -u dir [file ...]\n"
+ fprintf(stderr, "usage: %s [-aDnQW] [-C file] [-Tutf8]\n"
+ " %s [-aDnQW] [-Tutf8] dir ...\n"
+ " %s [-DnQW] [-Tutf8] -d dir [file ...]\n"
+ " %s [-DnW] -u dir [file ...]\n"
" %s [-Q] -t file ...\n",
progname, progname, progname,
progname, progname);
@@ -1623,7 +1623,7 @@ putkeys(const struct mpage *mpage,
if (0 == sz)
return;
- if (verb > 1) {
+ if (debug > 1) {
for (i = 0, mask = 1;
i < mansearch_keymax;
i++, mask <<= 1)
@@ -1850,7 +1850,7 @@ dbadd(struct mpage *mpage, struct mchars *mc)
size_t i;
unsigned int slot;
- if (verb)
+ if (debug)
say(mpage->mlinks->file, "Adding to database");
if (nodb)
@@ -1896,7 +1896,7 @@ dbprune(void)
for (mpage = ohash_first(&mpages, &slot); NULL != mpage;
mpage = ohash_next(&mpages, &slot)) {
mlink = mpage->mlinks;
- if (verb)
+ if (debug)
say(mlink->file, "Deleting from database");
if (nodb)
continue;