Commit 6a3ac364 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in usage(), remove unneeded translation of "--quickblank"

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2982 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -193,6 +193,7 @@ CVS code - ...@@ -193,6 +193,7 @@ CVS code -
usage() usage()
- Properly mention the support for "[+LINE,COLUMN]" on the - Properly mention the support for "[+LINE,COLUMN]" on the
command line when HAVE_GETOPT_LONG isn't defined. (DLR) command line when HAVE_GETOPT_LONG isn't defined. (DLR)
- Remove unneeded translation of "--quickblank". (DLR)
do_verbatim_input() do_verbatim_input()
- If constant cursor position display is on, make sure the - If constant cursor position display is on, make sure the
cursor position is displayed properly when we finish. (DLR) cursor position is displayed properly when we finish. (DLR)
......
...@@ -1073,8 +1073,7 @@ void usage(void) ...@@ -1073,8 +1073,7 @@ void usage(void)
print1opt(_("-T [#cols]"), _("--tabsize=[#cols]"), print1opt(_("-T [#cols]"), _("--tabsize=[#cols]"),
N_("Set width of a tab in cols to #cols")); N_("Set width of a tab in cols to #cols"));
#ifndef NANO_SMALL #ifndef NANO_SMALL
print1opt("-U", _("--quickblank"), print1opt("-U", "--quickblank", N_("Do quick statusbar blanking"));
N_("Do quick statusbar blanking"));
#endif #endif
print1opt("-V", "--version", print1opt("-V", "--version",
N_("Print version information and exit")); N_("Print version information and exit"));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment