]> git.wh0rd.org Git - nano.git/commitdiff
in do_input() and do_statusbar_input(), func_key is an int* and not an
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 2 Jan 2005 21:13:36 +0000 (21:13 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 2 Jan 2005 21:13:36 +0000 (21:13 +0000)
int; fix bad code due to the latter assumption

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2214 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/nano.c
src/winio.c

index 559ac14bfc9e09527460454707450824be463279..866e7ecf61247c215a8f38b7677ddcaa304b6464 100644 (file)
@@ -3410,7 +3410,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
 #ifndef DISABLE_MOUSE
     /* If we got a mouse click and it was on a shortcut, read in the
      * shortcut character. */
-    if (allow_funcs && func_key && input == KEY_MOUSE) {
+    if (allow_funcs && *func_key == TRUE && input == KEY_MOUSE) {
        if (do_mouse())
            input = get_kbinput(edit, meta_key, func_key);
        else
index c2fd6ef39e67782c6a76d0d1d5883bd5dcfb41eb..d7d49753adcba0cb1f718fd31bb5bbb249cac8ca 100644 (file)
@@ -1634,7 +1634,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
 #ifndef DISABLE_MOUSE
     /* If we got a mouse click and it was on a shortcut, read in the
      * shortcut character. */
-    if (allow_funcs && func_key && input == KEY_MOUSE) {
+    if (allow_funcs && *func_key == TRUE && input == KEY_MOUSE) {
        if (do_mouse())
            input = get_kbinput(bottomwin, meta_key, func_key);
        else