]> git.wh0rd.org Git - nano.git/commitdiff
in get_key_buffer(), fix inaccurate comments
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 25 May 2007 16:54:06 +0000 (16:54 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 25 May 2007 16:54:06 +0000 (16:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_0_branch/nano@4111 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index b6b80f404a68273b04d81b8ce60e4d68248164b1..464f22f4d2e659ab8b5aed1760f4a3fd73f19c0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
 CVS code -
+- winio.c:
+  get_key_buffer()
+       - Fix inaccurate comments. (DLR)
 
 GNU nano 2.0.6 - 2007.04.26
 - text.c:
index 5c0251c4b2b68a80cfe9d1bc69dab3e93c17ae97..b3082b84333941f420ee993456cde74544ef66fc 100644 (file)
@@ -138,9 +138,8 @@ void get_key_buffer(WINDOW *win)
     allow_pending_sigwinch(FALSE);
 #endif
 
-    /* Increment the length of the keystroke buffer, save the value of
-     * the keystroke in key, and set key_code to TRUE if the keystroke
-     * is an extended keypad value or FALSE if it isn't. */
+    /* Increment the length of the keystroke buffer, and save the value
+     * of the keystroke at the end of it. */
     key_buffer_len++;
     key_buffer = (int *)nmalloc(sizeof(int));
     key_buffer[0] = input;
@@ -159,10 +158,8 @@ void get_key_buffer(WINDOW *win)
        if (input == ERR)
            break;
 
-       /* Otherwise, increment the length of the keystroke buffer, save
-        * the value of the keystroke in key, and set key_code to TRUE
-        * if the keystroke is an extended keypad value or FALSE if it
-        * isn't. */
+       /* Otherwise, increment the length of the keystroke buffer, and
+        * save the value of the keystroke at the end of it. */
        key_buffer_len++;
        key_buffer = (int *)nrealloc(key_buffer, key_buffer_len *
                sizeof(int));