1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-20 10:23:57 +00:00

(redisplay_internal) <update one window>: Make sure

last_arrow_position and last_arrow_string are set.
This commit is contained in:
Gerd Moellmann 2001-03-25 12:01:31 +00:00
parent d74c19004f
commit 927c5b3b64
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2001-03-25 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (redisplay_internal) <update one window>: Make sure
last_arrow_position and last_arrow_string are set.
* frame.c (Fframe_list): Don't return a tooltip frame.
2001-03-23 Gerd Moellmann <gerd@gnu.org>

View File

@ -8717,6 +8717,10 @@ redisplay_internal (preserve_echo_area)
/* This has already been done above if
consider_all_windows_p is set. */
mark_window_display_accurate_1 (w, 1);
last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
last_arrow_string = Voverlay_arrow_string;
if (frame_up_to_date_hook != 0)
frame_up_to_date_hook (sf);
}