Delete the undocumented and unimplemented man(1) -i (interactive
authorschwarze <schwarze@openbsd.org>
Tue, 18 Apr 2017 15:26:33 +0000 (15:26 +0000)
committerschwarze <schwarze@openbsd.org>
Tue, 18 Apr 2017 15:26:33 +0000 (15:26 +0000)
apropos) option.  It will not be implemented.  Featurism isn't the
plan for the future; simplicity is.

usr.bin/mandoc/main.c

index fa3e496..ee1d3bd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.190 2017/03/27 18:51:20 schwarze Exp $ */
+/*     $OpenBSD: main.c,v 1.191 2017/04/18 15:26:33 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014-2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -50,7 +50,6 @@ enum  outmode {
        OUTMODE_FLN,
        OUTMODE_LST,
        OUTMODE_ALL,
-       OUTMODE_INT,
        OUTMODE_ONE
 };
 
@@ -201,9 +200,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;