probe Xfixes until this stuff is stabilized (Bug#17609).
+2014-06-06 Dmitry Antipov <dmantipov@yandex.ru>
+
+ * xterm.c (x_setup_pointer_blanking): Conditionally
+ probe Xfixes until this stuff is stabilized (Bug#17609).
+
2014-06-05 Dmitry Antipov <dmantipov@yandex.ru>
* keyboard.c, process.c: Do not define POLL_FOR_INPUT here
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
{