]> git.wh0rd.org Git - nano.git/commitdiff
Back out off by one fix that's not actually off by one, it was a different bug :-)
authorChris Allegretta <chrisa@asty.org>
Wed, 24 Oct 2001 17:25:36 +0000 (17:25 +0000)
committerChris Allegretta <chrisa@asty.org>
Wed, 24 Oct 2001 17:25:36 +0000 (17:25 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@878 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
nano.c

index 1e0fec16f4de21f1edba27db75bc04716551f4db..bfd03f2b744ecaf9c876b10f91b3db2e97a5b1c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,8 +18,6 @@ CVS code -
           replaces cuttingpartialline).
   do_uncut_text()
        - Similar display fixes (David Lawrence Ramsey).
-  cut_marked_segment()
-       - Fix off-by one in mem allocation.
 - faq.html
        - Removed nano-editor.org FTP site address [deprecated] and added
        the GNU one.
@@ -39,7 +37,6 @@ CVS code -
          beginning of first line, prog should simply abort.  Added
          the #ifdefs around the code in main().
   main()
-       - Fixed off by one when checking for MAIN_LIST_LEN. Ugh.
        - Moved #ifndef NANO_SMALL down past the case 0: line so
          control-space doesn't insert a \0 (ack!)
 - rcfile.c:
diff --git a/nano.c b/nano.c
index 39ac73e01d191b1a9186a3352b6a8d060ec7e912..80685d7d55a4b9a838156ab416f107b648a94a67 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -3115,7 +3115,7 @@ int main(int argc, char *argv[])
 
        /* Look through the main shortcut list to see if we've hit a
           shortcut key */
-       for (i = 0; i < MAIN_LIST_LEN  - 1 && !keyhandled; i++) {
+       for (i = 0; i < MAIN_LIST_LEN && !keyhandled; i++) {
            if (kbinput == main_list[i].val ||
                (main_list[i].misc1 && kbinput == main_list[i].misc1) ||
                (main_list[i].misc2 && kbinput == main_list[i].misc2)) {