]> git.wh0rd.org Git - nano.git/commitdiff
in do_yesno_prompt(), remove redundant check for NO_HELP's being FALSE
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 30 Jun 2007 21:19:42 +0000 (21:19 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 30 Jun 2007 21:19:42 +0000 (21:19 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_0_branch/nano@4118 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/prompt.c

index 600c936fb949cab249deeeb51794869a285cd1c5..6efd1939512c2895b3193e36ec6e7cfd4d2f1608 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,9 @@ CVS code -
          wmouse_trafo(), which does both.  Changes to do_browser(),
          do_mouse(), do_statusbar_mouse(), do_yesno_prompt(), and
          do_mouseinput(). (DLR)
+- prompt.c:
+  do_yesno_prompt()
+       - Remove redundant check for NO_HELP's being FALSE. (DLR)
 - winio.c:
   get_key_buffer()
        - Fix inaccurate comments. (DLR)
index a213efe28df89056673a1755507e845308b962f2..06b2b6a6f64b70d0c33e39ddabda53b2ad81e111 100644 (file)
@@ -1332,12 +1332,12 @@ int do_yesno_prompt(bool all, const char *msg)
                break;
 #ifndef DISABLE_MOUSE
            case KEY_MOUSE:
-               /* We can click on the shortcut list to select an
-                * answer. */
+               /* We can click on the Yes/No/All shortcut list to
+                * select an answer. */
                if (get_mouseinput(&mouse_x, &mouse_y, FALSE) == 0 &&
                        wmouse_trafo(bottomwin, &mouse_y, &mouse_x,
-                       FALSE) && !ISSET(NO_HELP) && mouse_x <
-                       (width * 2) && mouse_y > 0) {
+                       FALSE) && mouse_x < (width * 2) &&
+                       mouse_y > 0) {
                    int x = mouse_x / width;
                        /* Calculate the x-coordinate relative to the
                         * two columns of the Yes/No/All shortcuts in