* xterm.c (x_setup_pointer_blanking): Conditionally

probe Xfixes until this stuff is stabilized (Bug#17609).
This commit is contained in:
Dmitry Antipov 2014-06-06 05:11:26 +04:00
parent 4a81602043
commit b77205c029
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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

View file

@ -9781,7 +9781,9 @@ x_toggle_visible_pointer (struct frame *f, bool invisible)
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
{