]> git.eshelyaron.com Git - emacs.git/commitdiff
(direct_output_for_insert): Call
authorGerd Moellmann <gerd@gnu.org>
Sun, 31 Mar 2002 17:08:42 +0000 (17:08 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sun, 31 Mar 2002 17:08:42 +0000 (17:08 +0000)
mark_window_display_accurate.

src/ChangeLog
src/dispnew.c

index 816cc94e5d7097257507ea4a81a54b14a2399603..9602faa4990df6db003d3ceeb2ee9c1b6f3d1ab6 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-31  Gerd Moellmann  <gerd@gnu.org>
+
+       * dispnew.c (direct_output_for_insert): Call
+       mark_window_display_accurate.
+
 2002-03-16  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * Version 21.2 released.
index 81752a66f0112ccfd23cce38c9cafc4cb8ee1a91..021ddb9e2ee42c6c39278cfc4983d94dd9601487 100644 (file)
@@ -1,5 +1,5 @@
 /* Updating of data structures for redisplay.
-   Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 1999, 2000, 2001
+   Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 1999, 2000, 2001, 2002
        Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -3672,14 +3672,7 @@ direct_output_for_insert (g)
   fflush (stdout);
 
   TRACE ((stderr, "direct output for insert\n"));
-
-  UNCHANGED_MODIFIED = MODIFF;
-  BEG_UNCHANGED = GPT - BEG;
-  XSETFASTINT (w->last_point, PT);
-  w->last_cursor = w->cursor;
-  XSETFASTINT (w->last_modified, MODIFF);
-  XSETFASTINT (w->last_overlay_modified, OVERLAY_MODIFF);
-
+  mark_window_display_accurate (it.window, 1);
   redisplay_performed_directly_p = 1;
   return 1;
 }