aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xterm.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8c5e9686e9..60e0cb8e6c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+1999-11-28 Gerd Moellmann <[email protected]>
+
+ * xterm.c (XTread_socket) <ClientMessage, Xatom_Scrollbar>:
+ Switch off busy-cursor by setting inhibit_busy_cursor to 2.
+
1999-11-28 Eli Zaretskii <[email protected]>
* charset.c (Fmake_char_internal): Print the charset ID when
diff --git a/src/xterm.c b/src/xterm.c
index e2f7850829..0ee60c2d6a 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -8846,6 +8846,8 @@ XTread_socket (sd, bufp, numchars, expected)
else if (event.xclient.message_type
== dpyinfo->Xatom_Scrollbar)
{
+ if (display_busy_cursor_p)
+ inhibit_busy_cursor = 2;
x_scroll_bar_to_input_event (&event, bufp);
++bufp, ++count, --numchars;
goto out;