diff options
| author | Gerd Moellmann | 1999-11-28 12:37:33 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-28 12:37:33 +0000 |
| commit | f9632fc8a461723d74f43b7443536e188e96ca46 (patch) | |
| tree | 3988db283a99cca05c858fe309e77e2493f0ea45 /src | |
| parent | 613a83462a606105d96e614951a87807f33585f0 (diff) | |
| download | emacs-f9632fc8a461723d74f43b7443536e188e96ca46.tar.gz emacs-f9632fc8a461723d74f43b7443536e188e96ca46.zip | |
(XTread_socket) <ClientMessage, Xatom_Scrollbar>:
Switch off busy-cursor by setting inhibit_busy_cursor to 2.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8c5e9686e92..60e0cb8e6cd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 1999-11-28 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (XTread_socket) <ClientMessage, Xatom_Scrollbar>: | ||
| 4 | Switch off busy-cursor by setting inhibit_busy_cursor to 2. | ||
| 5 | |||
| 1 | 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * charset.c (Fmake_char_internal): Print the charset ID when | 8 | * charset.c (Fmake_char_internal): Print the charset ID when |
diff --git a/src/xterm.c b/src/xterm.c index e2f78508295..0ee60c2d6ae 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -8846,6 +8846,8 @@ XTread_socket (sd, bufp, numchars, expected) | |||
| 8846 | else if (event.xclient.message_type | 8846 | else if (event.xclient.message_type |
| 8847 | == dpyinfo->Xatom_Scrollbar) | 8847 | == dpyinfo->Xatom_Scrollbar) |
| 8848 | { | 8848 | { |
| 8849 | if (display_busy_cursor_p) | ||
| 8850 | inhibit_busy_cursor = 2; | ||
| 8849 | x_scroll_bar_to_input_event (&event, bufp); | 8851 | x_scroll_bar_to_input_event (&event, bufp); |
| 8850 | ++bufp, ++count, --numchars; | 8852 | ++bufp, ++count, --numchars; |
| 8851 | goto out; | 8853 | goto out; |