emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117279: * xterm.c (x_setup_pointer_blanking): Condi


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r117279: * xterm.c (x_setup_pointer_blanking): Conditionally
Date: Fri, 06 Jun 2014 01:11:40 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117279
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Fri 2014-06-06 05:11:26 +0400
message:
  * xterm.c (x_setup_pointer_blanking): Conditionally
  probe Xfixes until this stuff is stabilized (Bug#17609).
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/xterm.c                    xterm.c-20091113204419-o5vbwnq5f7feedwu-244
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-06-05 06:24:54 +0000
+++ b/src/ChangeLog     2014-06-06 01:11:26 +0000
@@ -1,3 +1,8 @@
+2014-06-06  Dmitry Antipov  <address@hidden>
+
+       * xterm.c (x_setup_pointer_blanking): Conditionally
+       probe Xfixes until this stuff is stabilized (Bug#17609).
+
 2014-06-05  Dmitry Antipov  <address@hidden>
 
        * keyboard.c, process.c: Do not define POLL_FOR_INPUT here

=== modified file 'src/xterm.c'
--- a/src/xterm.c       2014-06-04 14:59:09 +0000
+++ b/src/xterm.c       2014-06-06 01:11:26 +0000
@@ -9781,7 +9781,9 @@
 static void
 x_setup_pointer_blanking (struct x_display_info *dpyinfo)
 {
-  if (x_probe_xfixes_extension (dpyinfo->display))
+  /* FIXME: the brave tester should set EMACS_XFIXES because we're suspecting
+     X server bug, see http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17609.  */
+  if (egetenv ("EMACS_XFIXES") && x_probe_xfixes_extension (dpyinfo->display))
     dpyinfo->toggle_visible_pointer = xfixes_toggle_visible_pointer;
   else
     {


reply via email to

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