]> git.cameronkatri.com Git - mandoc.git/commitdiff
Delete the undocumented and unimplemented man(1) -i (interactive
authorIngo Schwarze <schwarze@openbsd.org>
Tue, 18 Apr 2017 15:27:09 +0000 (15:27 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Tue, 18 Apr 2017 15:27:09 +0000 (15:27 +0000)
apropos) option.  It will not be implemented.  Featurism isn't the
plan for the future; simplicity is.

main.c

diff --git a/main.c b/main.c
index 700e3c72dbfae902b15b5e07ee87652a77eea12e..66dbd94ff8b3e24909fba31ea6f99afcbf25a7ac 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/*     $Id: main.c,v 1.287 2017/03/27 18:51:36 schwarze Exp $ */
+/*     $Id: main.c,v 1.288 2017/04/18 15:27:09 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014-2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;