From: Gerd Moellmann Date: Mon, 21 May 2001 15:23:17 +0000 (+0000) Subject: (direct_output_forward_char): Call X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd968a3d8bd9153620838261e6c9c8c9b966d5fb;p=emacs.git (direct_output_forward_char): Call update_begin/update_end. --- diff --git a/src/dispnew.c b/src/dispnew.c index 412d5993956..f0e817e2b7f 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -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;