emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 1b9aca0ea8: Fix typos in last change


From: Po Lu
Subject: master 1b9aca0ea8: Fix typos in last change
Date: Thu, 2 Jun 2022 01:39:18 -0400 (EDT)

branch: master
commit 1b9aca0ea8c8a70541e3ced0a21afa16e15a15cd
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix typos in last change
    
    * src/xterm.c (handle_one_xevent): Fix typos.
---
 src/xterm.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/xterm.c b/src/xterm.c
index e5f0ec703c..cd6b6af58f 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -16822,8 +16822,8 @@ handle_one_xevent (struct x_display_info *dpyinfo,
              /* But never if `mouse-drag-and-drop-region' is in
                 progress, since that results in the tooltip being
                 dismissed when the mouse moves on top.  */
-             && (!EQ (track_mouse, Qdrag_source)
-                 && gui_mouse_grabbed (dpyinfo)))
+             && !(EQ (track_mouse, Qdrag_source)
+                  && gui_mouse_grabbed (dpyinfo)))
            do_help = -1;
         }
 #ifdef USE_GTK
@@ -18163,8 +18163,8 @@ handle_one_xevent (struct x_display_info *dpyinfo,
                         in progress, since that results in the
                         tooltip being dismissed when the mouse moves
                         on top.  */
-                     && (!EQ (track_mouse, Qdrag_source)
-                         && gui_mouse_grabbed (dpyinfo)))
+                     && !(EQ (track_mouse, Qdrag_source)
+                          && gui_mouse_grabbed (dpyinfo)))
                    do_help = -1;
                }
 #ifdef USE_GTK



reply via email to

[Prev in Thread] Current Thread [Next in Thread]