diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-06-18 13:07:20 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-06-18 13:07:20 +0300 |
commit | 82626e62ab27b498848e4c1822f6c4c06ad53947 (patch) | |
tree | b1409b330af064689e3b2751db92388583e35c90 /src/indent.c | |
parent | 94672c2936dd58a1837fd208f8678074ca8193c3 (diff) | |
download | emacs-82626e62ab27b498848e4c1822f6c4c06ad53947.tar.gz emacs-82626e62ab27b498848e4c1822f6c4c06ad53947.tar.bz2 emacs-82626e62ab27b498848e4c1822f6c4c06ad53947.zip |
Allow aborting redisplay stuck in 'parse-partial-sexp'
* src/xdisp.c (display_working_on_window_p): New global variable.
(unwind_display_working_on_window): New function.
* src/keyboard.c (command_loop_1): Reset
'display_working_on_window_p' before and after executing commands.
* src/window.c (Frecenter, window_scroll, displayed_window_lines):
* src/indent.c (Fvertical_motion): Set
'display_working_on_window_p' before calling 'start_display'.
* src/syntax.c (scan_sexps_forward): Call 'update_redisplay_ticks'
after finishing the loop.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/indent.c b/src/indent.c index 51f6f414de3..7d9f0fe8b00 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2177,6 +2177,8 @@ whether or not it is currently displayed in some window. */) line_number_display_width (w, &lnum_width, &lnum_pixel_width); SET_TEXT_POS (pt, PT, PT_BYTE); itdata = bidi_shelve_cache (); + record_unwind_protect_void (unwind_display_working_on_window); + display_working_on_window_p = true; start_display (&it, w, pt); it.lnum_width = lnum_width; first_x = it.first_visible_x; |