# HG changeset patch # User Gerd Moellmann # Date 985521644 0 # Node ID 30f05fa8ebb8beaad79a435870e4ce3c7e8e183c # Parent 3cd6671306b2f42ce4231b10246d768c01f165d5 (redisplay_internal) : Make sure last_arrow_position and last_arrow_string are set. diff -r 3cd6671306b2 -r 30f05fa8ebb8 src/xdisp.c --- a/src/xdisp.c Sun Mar 25 11:37:40 2001 +0000 +++ b/src/xdisp.c Sun Mar 25 12:00:44 2001 +0000 @@ -8717,6 +8717,10 @@ /* 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); }