]> git.wh0rd.org Git - nano.git/commitdiff
fix inaccurate comment
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 15 Jun 2004 01:48:51 +0000 (01:48 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 15 Jun 2004 01:48:51 +0000 (01:48 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1810 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index 2b47204750e43035e7515403a10f83ae1721844b..aa4f92684d9403796602a8f89382ce560639d074 100644 (file)
@@ -139,9 +139,9 @@ int get_kbinput(WINDOW *win, int *meta_key)
 
            /* First, assume that we got a meta sequence.  Set meta_key
             * to TRUE and save the character we got as the result.  We
-            * do this so that if there's a delay greater than nodelay()
-            * between Escape and the character we got (after we
-            * ungetch() it below), it'll still be properly interpreted
+            * do this so that if the keyboard buffer is full when we
+            * send back the character we got below (in which case we'll
+            * lose that character), it'll still be properly interpreted
             * as a meta sequence. */
            *meta_key = TRUE;
            retval = tolower(kbinput);