Commit cc8d9c71 cc8d9c7151e8353ea88426d881d20a6ee201db69 by Sergey Poznyakoff

Fix docstrings for -nowhatnowproc

1 parent 2b6416ef
......@@ -49,7 +49,7 @@ static struct argp_option options[] = {
{"whatnowproc", ARG_WHATNOWPROC, N_("PROG"), 0,
N_("set the replacement for whatnow program")},
{"nowhatnowproc", ARG_NOWHATNOWPROC, NULL, 0,
N_("ignore whatnowproc variable. Use standard `whatnow' shell instead.")},
N_("don't run whatnowproc")},
{"use", ARG_USE, N_("BOOL"), OPTION_ARG_OPTIONAL,
N_("use draft file preserved after the last session") },
{"nouse", ARG_NOUSE, NULL, OPTION_HIDDEN, ""},
......
......@@ -64,7 +64,7 @@ static struct argp_option options[] = {
{"whatnowproc", ARG_WHATNOWPROC, N_("PROG"), 0,
N_("set the replacement for whatnow program")},
{"nowhatnowproc", ARG_NOWHATNOWPROC, NULL, 0,
N_("ignore whatnowproc variable, use standard `whatnow' shell instead")},
N_("don't run whatnowproc")},
{"use", ARG_USE, N_("BOOL"), OPTION_ARG_OPTIONAL,
N_("use draft file preserved after the last session") },
{"nouse", ARG_NOUSE, N_("BOOL"), OPTION_HIDDEN, "" },
......
......@@ -64,7 +64,7 @@ static struct argp_option options[] = {
{"whatnowproc", ARG_WHATNOWPROC, N_("PROG"), 0,
N_("set the replacement for whatnow program")},
{"nowhatnowproc", ARG_NOWHATNOWPROC, NULL, 0,
N_("ignore whatnowproc variable; use standard `whatnow' shell instead")},
N_("don't run whatnowproc")},
{"use", ARG_USE, N_("BOOL"), OPTION_ARG_OPTIONAL, N_("use draft file preserved after the last session") },
{ 0 }
};
......