aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2002-03-30 11:54:45 +0000
committerGerd Moellmann2002-03-30 11:54:45 +0000
commitfc5206ff39bec4f57a3f4dc3fc5b1ada6cf9fa64 (patch)
treedd373b8c29337ae57cabcdd20c19dcd32da33f08 /src
parentb74bd4a35d18dabcdcb0abb6978255f0791a93cc (diff)
downloademacs-fc5206ff39bec4f57a3f4dc3fc5b1ada6cf9fa64.tar.gz
emacs-fc5206ff39bec4f57a3f4dc3fc5b1ada6cf9fa64.zip
(direct_output_for_insert): Call
mark_window_display_accurate.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 43d99b256c9..03dec48e29a 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3655,14 +3655,7 @@ direct_output_for_insert (g)
3655 fflush (stdout); 3655 fflush (stdout);
3656 3656
3657 TRACE ((stderr, "direct output for insert\n")); 3657 TRACE ((stderr, "direct output for insert\n"));
3658 3658 mark_window_display_accurate (it.window, 1);
3659 UNCHANGED_MODIFIED = MODIFF;
3660 BEG_UNCHANGED = GPT - BEG;
3661 XSETFASTINT (w->last_point, PT);
3662 w->last_cursor = w->cursor;
3663 XSETFASTINT (w->last_modified, MODIFF);
3664 XSETFASTINT (w->last_overlay_modified, OVERLAY_MODIFF);
3665
3666 redisplay_performed_directly_p = 1; 3659 redisplay_performed_directly_p = 1;
3667 return 1; 3660 return 1;
3668} 3661}