aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-25 12:01:31 +0000
committerGerd Moellmann2001-03-25 12:01:31 +0000
commit927c5b3b642103c121d437ba0b4c61b164ecc47f (patch)
treea03a1af9adc3eea70d72e8d3aadeefc46769d677 /src
parentd74c19004faaf9678a05d7b71c242ad6c4b3d850 (diff)
downloademacs-927c5b3b642103c121d437ba0b4c61b164ecc47f.tar.gz
emacs-927c5b3b642103c121d437ba0b4c61b164ecc47f.zip
(redisplay_internal) <update one window>: Make sure
last_arrow_position and last_arrow_string are set.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/xdisp.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index e573b9d2f2e..ff7a6c65abb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12001-03-25 Gerd Moellmann <gerd@gnu.org> 12001-03-25 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xdisp.c (redisplay_internal) <update one window>: Make sure
4 last_arrow_position and last_arrow_string are set.
5
3 * frame.c (Fframe_list): Don't return a tooltip frame. 6 * frame.c (Fframe_list): Don't return a tooltip frame.
4 7
52001-03-23 Gerd Moellmann <gerd@gnu.org> 82001-03-23 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/xdisp.c b/src/xdisp.c
index f467ef9671d..b40d944b30f 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -8717,6 +8717,10 @@ redisplay_internal (preserve_echo_area)
8717 /* This has already been done above if 8717 /* This has already been done above if
8718 consider_all_windows_p is set. */ 8718 consider_all_windows_p is set. */
8719 mark_window_display_accurate_1 (w, 1); 8719 mark_window_display_accurate_1 (w, 1);
8720
8721 last_arrow_position = COERCE_MARKER (Voverlay_arrow_position);
8722 last_arrow_string = Voverlay_arrow_string;
8723
8720 if (frame_up_to_date_hook != 0) 8724 if (frame_up_to_date_hook != 0)
8721 frame_up_to_date_hook (sf); 8725 frame_up_to_date_hook (sf);
8722 } 8726 }