]> git.wh0rd.org Git - nano.git/commitdiff
really fix handling of NANO_CONTROL_8
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 19 May 2006 14:26:16 +0000 (14:26 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 19 May 2006 14:26:16 +0000 (14:26 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3527 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/winio.c

index 3012026c14c1ef45add14d69f2563f30f2c87a51..cceadb93de47fa7fc2322fab8c4eb0098296c95a 100644 (file)
@@ -612,11 +612,11 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
 
     if (retval != ERR) {
        /* If our result is NANO_CONTROL_8, translate it to either
-        * Backspace or Delete, depending on whether REBIND_DELETE is
+        * Delete or Backspace, depending on whether REBIND_DELETE is
         * TRUE or FALSE. */
        if (retval == NANO_CONTROL_8)
-           retval = ISSET(REBIND_DELETE) ? NANO_BACKSPACE_KEY :
-               NANO_DELETE_KEY;
+           retval = ISSET(REBIND_DELETE) ? NANO_DELETE_KEY :
+               NANO_BACKSPACE_KEY;
 
        /* If our result is an extended keypad value (i.e, a value
         * outside of byte range), set func_key to TRUE. */