]> git.wh0rd.org Git - nano.git/commitdiff
in do_(statusbar_)?input(), remove redundant check for allow_funcs'
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 10 May 2006 13:06:58 +0000 (13:06 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 10 May 2006 13:06:58 +0000 (13:06 +0000)
being TRUE when we get KEY_MOUSE

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

ChangeLog
src/nano.c
src/prompt.c

index a6277f0ee3bf8245441fb498685f3df08489c038..e61685bcf601e9cfefa67a958d83754a0cbe41ce 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -157,6 +157,9 @@ CVS code -
        - Fix inaccuracies in the usage example. (DLR)
   renumber()
        - Remove invalid assert. (DLR, found by Filipe Moreira)
+  do_input()
+       - Remove redundant check for allow_funcs' being TRUE when we get
+         KEY_MOUSE. (DLR)
 - nano.h:
        - Reorder the toggle #defines to match their corresponding order
          in toggle_init(). (DLR)
@@ -166,6 +169,9 @@ CVS code -
          disabled, so that we aren't erroneously kicked out of the
          statusbar prompt under any circumstances. (DLR, found by Benno
          Schulenberg)
+  do_statusbar_input()
+       - Remove redundant check for allow_funcs' being TRUE when we get
+         KEY_MOUSE. (DLR)
   do_yesno()
        - Handle the keys in a switch statement instead of a long if
          block, for simplicity. (DLR)
index 04dcb9e4020c97e3b5dacee7c68461f985ea6979..43f8e52d108cd9d1528604b3fb3651f365b34301 100644 (file)
@@ -1284,7 +1284,7 @@ int do_input(bool *meta_key, bool *func_key, bool *s_or_t, bool
     if (allow_funcs) {
        /* If we got a mouse click and it was on a shortcut, read in the
         * shortcut character. */
-       if (allow_funcs && *func_key == TRUE && input == KEY_MOUSE)
+       if (*func_key == TRUE && input == KEY_MOUSE)
            input = do_mouse() ? get_kbinput(edit, meta_key, func_key) :
                ERR;
     }
index b22f8658f6086c4607ade8227ccdbe993c0c72c2..49e198f68d78da60b152139ef1cef6d528a945ab 100644 (file)
@@ -72,7 +72,7 @@ int do_statusbar_input(bool *meta_key, bool *func_key, bool *s_or_t,
     if (allow_funcs) {
        /* If we got a mouse click and it was on a shortcut, read in the
         * shortcut character. */
-       if (allow_funcs && *func_key == TRUE && input == KEY_MOUSE)
+       if (*func_key == TRUE && input == KEY_MOUSE)
            input = do_statusbar_mouse() ? get_kbinput(bottomwin,
                meta_key, func_key) : ERR;
     }