]> git.wh0rd.org Git - nano.git/commitdiff
more miscellaneous cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Nov 2006 04:11:18 +0000 (04:11 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Nov 2006 04:11:18 +0000 (04:11 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3961 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

BUGS
ChangeLog
src/global.c
src/nano.h

diff --git a/BUGS b/BUGS
index c100c4bfd7c79452af72843b0938ef7084f57623..73ad4f4fc04e6f271f98371de7dbd1a564719286 100644 (file)
--- a/BUGS
+++ b/BUGS
@@ -65,7 +65,7 @@
 - Using -k, pasted text is not updated properly if it goes beyond
   editbot. (35) [FIXED]
 - Doing a cut with -k can screw up the filestruct; fault is in cutting
code. (36)  [FIXED]
 code. (36) [FIXED]
 - Hitting enter on the magic line makes new lines, but they are not
   written out to disk when saved..... (37). [FIXED]
 - Page up and page down do not work the same way as in Pico (# of
index ab9fffcc4018316e462775e10c3a3818b15f6d08..e31345911e8de2905f6dfb14001c520d5ed5d9ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
 CVS code -
+- nano.h:
+       - Rename NANO_ALT_REPLACE_KEY to NANO_REPLACE_ALTKEY, for
+         consistency. (DLR)
 - BUGS:
        - Miscellaneous cosmetic fixes. (DLR)
 
index 76ef06d1d8804f507049d05a109daf8bd5879bc5..f600ea2a29cbc41bfaf9b4cd8fe060833cd6ba39 100644 (file)
@@ -564,9 +564,9 @@ void shortcut_init(bool unjustify)
 
     sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg
 #ifndef NANO_TINY
-       , IFSCHELP(nano_replace_msg, FALSE, NANO_ALT_REPLACE_KEY)
+       , IFSCHELP(nano_replace_msg, FALSE, NANO_REPLACE_ALTKEY)
 #else
-       , IFSCHELP(nano_replace_msg, TRUE, NANO_ALT_REPLACE_KEY)
+       , IFSCHELP(nano_replace_msg, TRUE, NANO_REPLACE_ALTKEY)
 #endif
        , NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW, do_replace);
 
index a1108fe4b5e091f38baf58d860bb12bcd1a0270b..b9cace719899a251041379e826e2587a84be5be1 100644 (file)
@@ -495,7 +495,7 @@ typedef struct rcoption {
 #define NANO_REGEXP_KEY                        NANO_ALT_R
 #define NANO_REPLACE_KEY               NANO_CONTROL_4
 #define NANO_REPLACE_FKEY              KEY_F(14)
-#define NANO_ALT_REPLACE_KEY           NANO_ALT_R
+#define NANO_REPLACE_ALTKEY            NANO_ALT_R
 #define NANO_TOOTHERSEARCH_KEY         NANO_CONTROL_R
 #define NANO_PREVPAGE_KEY              NANO_CONTROL_Y
 #define NANO_PREVPAGE_FKEY             KEY_F(7)