Commit 804e1074 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

yet more cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3325 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 17 additions and 17 deletions
+17 -17
...@@ -286,8 +286,8 @@ void shortcut_init(bool unjustify) ...@@ -286,8 +286,8 @@ void shortcut_init(bool unjustify)
#ifndef DISABLE_BROWSER #ifndef DISABLE_BROWSER
const char *to_files_msg = N_("To Files"); const char *to_files_msg = N_("To Files");
#endif #endif
const char *nano_cancel_msg = N_("Cancel the current function");
#ifndef DISABLE_HELP #ifndef DISABLE_HELP
const char *nano_cancel_msg = N_("Cancel the current function");
const char *nano_help_msg = N_("Invoke the help menu"); const char *nano_help_msg = N_("Invoke the help menu");
const char *nano_exit_msg = const char *nano_exit_msg =
#ifdef ENABLE_MULTIBUFFER #ifdef ENABLE_MULTIBUFFER
...@@ -666,8 +666,8 @@ void shortcut_init(bool unjustify) ...@@ -666,8 +666,8 @@ void shortcut_init(bool unjustify)
/* Translators: try to keep this string under 10 characters long. */ /* Translators: try to keep this string under 10 characters long. */
sc_init_one(&whereis_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&whereis_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
/* Translators: try to keep this string under 10 characters long. */ /* Translators: try to keep this string under 10 characters long. */
sc_init_one(&whereis_list, NANO_FIRSTLINE_KEY, first_line_msg, sc_init_one(&whereis_list, NANO_FIRSTLINE_KEY, first_line_msg,
...@@ -752,8 +752,8 @@ void shortcut_init(bool unjustify) ...@@ -752,8 +752,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&replace_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&replace_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
sc_init_one(&replace_list, NANO_FIRSTLINE_KEY, first_line_msg, sc_init_one(&replace_list, NANO_FIRSTLINE_KEY, first_line_msg,
IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_FIRSTLINE_FKEY, IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_FIRSTLINE_FKEY,
...@@ -807,8 +807,8 @@ void shortcut_init(bool unjustify) ...@@ -807,8 +807,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&replace_list_2, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&replace_list_2, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
sc_init_one(&replace_list_2, NANO_FIRSTLINE_KEY, first_line_msg, sc_init_one(&replace_list_2, NANO_FIRSTLINE_KEY, first_line_msg,
IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY,
...@@ -837,8 +837,8 @@ void shortcut_init(bool unjustify) ...@@ -837,8 +837,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&gotoline_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&gotoline_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
sc_init_one(&gotoline_list, NANO_FIRSTLINE_KEY, first_line_msg, sc_init_one(&gotoline_list, NANO_FIRSTLINE_KEY, first_line_msg,
IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_firstline_msg, NANO_NO_KEY), NANO_NO_KEY,
...@@ -865,8 +865,8 @@ void shortcut_init(bool unjustify) ...@@ -865,8 +865,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&writefile_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&writefile_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
#ifndef DISABLE_BROWSER #ifndef DISABLE_BROWSER
/* If we're using restricted mode, the file browser is disabled. /* If we're using restricted mode, the file browser is disabled.
...@@ -981,8 +981,8 @@ void shortcut_init(bool unjustify) ...@@ -981,8 +981,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&extcmd_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&extcmd_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
sc_init_one(&extcmd_list, NANO_TOOTHERINSERT_KEY, N_("Insert File"), sc_init_one(&extcmd_list, NANO_TOOTHERINSERT_KEY, N_("Insert File"),
IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_insert_msg, NANO_NO_KEY), NANO_NO_KEY,
...@@ -1037,8 +1037,8 @@ void shortcut_init(bool unjustify) ...@@ -1037,8 +1037,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&spell_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&spell_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
#endif #endif
#ifndef DISABLE_BROWSER #ifndef DISABLE_BROWSER
...@@ -1078,8 +1078,8 @@ void shortcut_init(bool unjustify) ...@@ -1078,8 +1078,8 @@ void shortcut_init(bool unjustify)
); );
sc_init_one(&gotodir_list, NANO_CANCEL_KEY, cancel_msg, sc_init_one(&gotodir_list, NANO_CANCEL_KEY, cancel_msg,
IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, IFHELP(nano_cancel_msg, NANO_NO_KEY), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, VIEW, NULL); VIEW, NULL);
#endif #endif
currshortcut = main_list; currshortcut = main_list;
......
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