(parse_options): Remove --allow-missing option.
authorJim Meyering <jim@meyering.net>
Sat, 15 Oct 2005 10:15:34 +0000 (10:15 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 15 Oct 2005 10:15:34 +0000 (10:15 +0000)
You can use --retry instead.

src/tail.c

index 19b4992e1a10c75068b7fce4f57879ec37e1a499..9c6b64e3266f6509d3f10846ff19fbce115acb53 100644 (file)
@@ -190,7 +190,6 @@ static bool presume_input_pipe;
 enum
 {
   RETRY_OPTION = CHAR_MAX + 1,
-  ALLOW_MISSING_OPTION,   /* deprecated, FIXME: remove in late 2004 */
   MAX_UNCHANGED_STATS_OPTION,
   PID_OPTION,
   PRESUME_INPUT_PIPE_OPTION,
@@ -199,8 +198,6 @@ enum
 
 static struct option const long_options[] =
 {
-  /* FIXME: remove in 2005 --allow-missing is deprecated; use --retry instead */
-  {"allow-missing", no_argument, NULL, ALLOW_MISSING_OPTION},
   {"bytes", required_argument, NULL, 'c'},
   {"follow", optional_argument, NULL, LONG_FOLLOW_OPTION},
   {"lines", required_argument, NULL, 'n'},
@@ -1493,10 +1490,6 @@ parse_options (int argc, char **argv,
                                     follow_mode_string, follow_mode_map);
          break;
 
-       case ALLOW_MISSING_OPTION:
-         error (0, 0,
-          _("the --allow-missing option is deprecated; use --retry instead"));
-         /* fall through */
        case RETRY_OPTION:
          reopen_inaccessible_files = true;
          break;