in toggle_init(), in the global toggle list, move the "Constant cursor
position display" toggle up to after the "Use more space for editing" toggle, for consistency git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3395 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
b9eb2be295
commit
8ff785cf40
|
@ -72,6 +72,10 @@ CVS code -
|
||||||
instead of "show", for consistency. (DLR)
|
instead of "show", for consistency. (DLR)
|
||||||
- In the main shortcut list, move the "Refresh" shortcut down to
|
- In the main shortcut list, move the "Refresh" shortcut down to
|
||||||
after the "Enter" shortcut, for consistency. (DLR)
|
after the "Enter" shortcut, for consistency. (DLR)
|
||||||
|
toggle_init()
|
||||||
|
- In the global toggle list, move the "Constant cursor position
|
||||||
|
display" toggle up to after the "Use more space for editing"
|
||||||
|
toggle, for consistency. (DLR)
|
||||||
- rcfile.c:
|
- rcfile.c:
|
||||||
parse_argument()
|
parse_argument()
|
||||||
- Rename variable ptr_bak to ptr_save, for consistency. (DLR)
|
- Rename variable ptr_bak to ptr_save, for consistency. (DLR)
|
||||||
|
|
|
@ -1212,6 +1212,8 @@ void toggle_init(void)
|
||||||
toggle_init_one(TOGGLE_NOHELP_KEY, N_("Help mode"), NO_HELP);
|
toggle_init_one(TOGGLE_NOHELP_KEY, N_("Help mode"), NO_HELP);
|
||||||
toggle_init_one(TOGGLE_MORESPACE_KEY,
|
toggle_init_one(TOGGLE_MORESPACE_KEY,
|
||||||
N_("Use of more space for editing"), MORE_SPACE);
|
N_("Use of more space for editing"), MORE_SPACE);
|
||||||
|
toggle_init_one(TOGGLE_CONST_KEY,
|
||||||
|
N_("Constant cursor position display"), CONST_UPDATE);
|
||||||
#ifdef ENABLE_MULTIBUFFER
|
#ifdef ENABLE_MULTIBUFFER
|
||||||
/* If we're using restricted mode, the multibuffer toggle is
|
/* If we're using restricted mode, the multibuffer toggle is
|
||||||
* disabled. It's useless since inserting files is disabled. */
|
* disabled. It's useless since inserting files is disabled. */
|
||||||
|
@ -1231,8 +1233,6 @@ void toggle_init(void)
|
||||||
* It's useless since suspending is disabled. */
|
* It's useless since suspending is disabled. */
|
||||||
if (!ISSET(RESTRICTED))
|
if (!ISSET(RESTRICTED))
|
||||||
toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspend"), SUSPEND);
|
toggle_init_one(TOGGLE_SUSPEND_KEY, N_("Suspend"), SUSPEND);
|
||||||
toggle_init_one(TOGGLE_CONST_KEY,
|
|
||||||
N_("Constant cursor position display"), CONST_UPDATE);
|
|
||||||
toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"),
|
toggle_init_one(TOGGLE_AUTOINDENT_KEY, N_("Auto indent"),
|
||||||
AUTOINDENT);
|
AUTOINDENT);
|
||||||
toggle_init_one(TOGGLE_TABSTOSPACES_KEY,
|
toggle_init_one(TOGGLE_TABSTOSPACES_KEY,
|
||||||
|
|
Loading…
Reference in New Issue