]> git.eshelyaron.com Git - emacs.git/commitdiff
(direct_output_forward_char): Call
authorGerd Moellmann <gerd@gnu.org>
Mon, 21 May 2001 15:23:17 +0000 (15:23 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 21 May 2001 15:23:17 +0000 (15:23 +0000)
update_begin/update_end.

src/dispnew.c

index 412d59939562bbb106647be6d5e8cfd606e25028..f0e817e2b7f60e3341be5568aa45c68e5fae109b 100644 (file)
@@ -3718,6 +3718,8 @@ direct_output_forward_char (n)
   xassert (w->cursor.hpos >= 0
           && w->cursor.hpos < w->desired_matrix->matrix_w);
   
+  update_begin (f);
+  
   if (FRAME_WINDOW_P (f))
     rif->cursor_to (w->cursor.vpos, w->cursor.hpos,
                    w->cursor.y, w->cursor.x);
@@ -3732,6 +3734,7 @@ direct_output_forward_char (n)
       cursor_to (y, x);
     }
   
+  update_end (f);
   fflush (stdout);
   redisplay_performed_directly_p = 1;
   return 1;