From: Gerd Moellmann Date: Mon, 25 Sep 2000 09:23:32 +0000 (+0000) Subject: (x_clear_mouse_face): Blick/unblock input. X-Git-Tag: emacs-pretest-21.0.90~1406 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e636f9d4814c7da977ab8581ab5e8b6b994d903;p=emacs.git (x_clear_mouse_face): Blick/unblock input. --- diff --git a/src/xterm.c b/src/xterm.c index c25fb1aa7fd..b7998488d1b 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -7159,9 +7159,11 @@ x_clear_mouse_face (w) struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (XFRAME (w->frame)); Lisp_Object window; + BLOCK_INPUT; XSETWINDOW (window, w); if (EQ (window, dpyinfo->mouse_face_window)) clear_mouse_face (dpyinfo); + UNBLOCK_INPUT; }