]> git.wh0rd.org Git - nano.git/commitdiff
in toggle_init(), in the global toggle list, move the "Constant cursor
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 19 Apr 2006 23:13:44 +0000 (23:13 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 19 Apr 2006 23:13:44 +0000 (23:13 +0000)
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-d3aeb78583b8

ChangeLog
src/global.c

index 6bb46150a6fa8ad7d8da1432bcd449d118065a5c..f2519da015fb9d2a45ba1700c947607bc9d11e43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -72,6 +72,10 @@ CVS code -
          instead of "show", for consistency. (DLR)
        - In the main shortcut list, move the "Refresh" shortcut down to
          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:
   parse_argument()
        - Rename variable ptr_bak to ptr_save, for consistency. (DLR)
index 3c2f1dee3a3608e080995fc676d156a0a6852b36..ed19deec7471074571dc2e6a6f6ed69a57c7b882 100644 (file)
@@ -1212,6 +1212,8 @@ void toggle_init(void)
     toggle_init_one(TOGGLE_NOHELP_KEY, N_("Help mode"), NO_HELP);
     toggle_init_one(TOGGLE_MORESPACE_KEY,
        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
     /* If we're using restricted mode, the multibuffer toggle is
      * disabled.  It's useless since inserting files is disabled. */
@@ -1231,8 +1233,6 @@ void toggle_init(void)
      * It's useless since suspending is disabled. */
     if (!ISSET(RESTRICTED))
        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"),
        AUTOINDENT);
     toggle_init_one(TOGGLE_TABSTOSPACES_KEY,