summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-04-18 15:27:09 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-04-18 15:27:09 +0000
commit4df1bc6f95fa256c0355afc2d808ed94c63fe442 (patch)
tree8b3fb16e0006c2df1509626a42f5b443fa8b4cd1
parent81698dc781dda96de839f963e851f9696a1ba9b7 (diff)
downloadmandoc-4df1bc6f95fa256c0355afc2d808ed94c63fe442.tar.gz
Delete the undocumented and unimplemented man(1) -i (interactive
apropos) option. It will not be implemented. Featurism isn't the plan for the future; simplicity is.
-rw-r--r--main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/main.c b/main.c
index 93ca8621..6fc3d4ad 100644
--- a/main.c
+++ b/main.c
@@ -56,7 +56,6 @@ enum outmode {
OUTMODE_FLN,
OUTMODE_LST,
OUTMODE_ALL,
- OUTMODE_INT,
OUTMODE_ONE
};
@@ -225,9 +224,6 @@ main(int argc, char *argv[])
}
defos = mandoc_strdup(optarg + 3);
break;
- case 'i':
- outmode = OUTMODE_INT;
- break;
case 'K':
if ( ! koptions(&options, optarg))
return (int)MANDOCLEVEL_BADARG;