Commit c41d428b authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

fix variable names

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1863 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
...@@ -323,8 +323,8 @@ void shortcut_init(int unjustify) ...@@ -323,8 +323,8 @@ void shortcut_init(int unjustify)
const char *nano_multibuffer_msg = N_("Insert into new buffer"); const char *nano_multibuffer_msg = N_("Insert into new buffer");
#endif #endif
#ifndef DISABLE_BROWSER #ifndef DISABLE_BROWSER
const char *nano_exit_browser_msg = N_("Exit from the file browser"); const char *nano_exitbrowser_msg = N_("Exit from the file browser");
const char *nano_goto_dir_msg = N_("Go to directory"); const char *nano_gotodir_msg = N_("Go to directory");
#endif #endif
#endif /* !DISABLE_HELP */ #endif /* !DISABLE_HELP */
...@@ -915,7 +915,7 @@ void shortcut_init(int unjustify) ...@@ -915,7 +915,7 @@ void shortcut_init(int unjustify)
); );
sc_init_one(&browser_list, NANO_EXIT_KEY, exit_msg, sc_init_one(&browser_list, NANO_EXIT_KEY, exit_msg,
IFHELP(nano_exit_browser_msg, NANO_NO_KEY), NANO_EXIT_FKEY, IFHELP(nano_exitbrowser_msg, NANO_NO_KEY), NANO_EXIT_FKEY,
NANO_NO_KEY, VIEW, 0); NANO_NO_KEY, VIEW, 0);
sc_init_one(&browser_list, NANO_PREVPAGE_KEY, prev_page_msg, sc_init_one(&browser_list, NANO_PREVPAGE_KEY, prev_page_msg,
...@@ -928,7 +928,7 @@ void shortcut_init(int unjustify) ...@@ -928,7 +928,7 @@ void shortcut_init(int unjustify)
/* Translators: try to keep this string under 22 characters long */ /* Translators: try to keep this string under 22 characters long */
sc_init_one(&browser_list, NANO_GOTO_KEY, N_("Go To Dir"), sc_init_one(&browser_list, NANO_GOTO_KEY, N_("Go To Dir"),
IFHELP(nano_goto_dir_msg, NANO_ALT_GOTO_KEY), NANO_GOTO_FKEY, IFHELP(nano_gotodir_msg, NANO_ALT_GOTO_KEY), NANO_GOTO_FKEY,
NANO_NO_KEY, VIEW, 0); NANO_NO_KEY, VIEW, 0);
free_shortcutage(&gotodir_list); free_shortcutage(&gotodir_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