emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114105: * xterm.c (handle_one_xevent): Use event.xu


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r114105: * xterm.c (handle_one_xevent): Use event.xunmap and not event.xmap when
Date: Mon, 02 Sep 2013 11:25:38 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114105
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Mon 2013-09-02 15:24:11 +0400
message:
  * xterm.c (handle_one_xevent): Use event.xunmap and not event.xmap when
  handling UnmapNotify event.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/xterm.c                    xterm.c-20091113204419-o5vbwnq5f7feedwu-244
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-09-02 08:45:32 +0000
+++ b/src/ChangeLog     2013-09-02 11:24:11 +0000
@@ -8,6 +8,8 @@
        Ifdef away legacy code.
        (XTmouse_position, x_scroll_bar_report_motion):
        Use x_last_mouse_movement_time.
+       (handle_one_xevent): Use event.xunmap and not event.xmap when handling
+       UnmapNotify event.
 
 2013-09-02  Dmitry Antipov  <address@hidden>
 

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2013-09-02 10:37:06 +0000
+++ b/src/xterm.c       2013-09-02 11:24:11 +0000
@@ -6183,7 +6183,7 @@
 
     case UnmapNotify:
       /* Redo the mouse-highlight after the tooltip has gone.  */
-      if (event.xmap.window == tip_window)
+      if (event.xunmap.window == tip_window)
         {
           tip_window = 0;
           redo_mouse_highlight ();


reply via email to

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