diff options
| author | Gerd Moellmann | 2000-03-29 12:58:52 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-29 12:58:52 +0000 |
| commit | 2c9cf2c821853fae195d5f21f6fd87ae5c9231c6 (patch) | |
| tree | 116ec83db7e9c4325b1457008e85eabfad035cff /src | |
| parent | 03859d20b72cfc6b4f37518e5e748c9b5caab40b (diff) | |
| download | emacs-2c9cf2c821853fae195d5f21f6fd87ae5c9231c6.tar.gz emacs-2c9cf2c821853fae195d5f21f6fd87ae5c9231c6.zip | |
(Ftop_level): Cancel busy-cursor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index ef3c2160a05..de2e8730cee 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1175,6 +1175,10 @@ DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "", | |||
| 1175 | "Exit all recursive editing levels.") | 1175 | "Exit all recursive editing levels.") |
| 1176 | () | 1176 | () |
| 1177 | { | 1177 | { |
| 1178 | #ifdef HAVE_X_WINDOWS | ||
| 1179 | if (display_busy_cursor_p) | ||
| 1180 | cancel_busy_cursor (); | ||
| 1181 | #endif | ||
| 1178 | Fthrow (Qtop_level, Qnil); | 1182 | Fthrow (Qtop_level, Qnil); |
| 1179 | } | 1183 | } |
| 1180 | 1184 | ||