diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-04-18 15:27:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-04-18 15:27:09 +0000 |
commit | 4df1bc6f95fa256c0355afc2d808ed94c63fe442 (patch) | |
tree | 8b3fb16e0006c2df1509626a42f5b443fa8b4cd1 | |
parent | 81698dc781dda96de839f963e851f9696a1ba9b7 (diff) | |
download | mandoc-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.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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; |