From: Gerd Moellmann Date: Mon, 10 Sep 2001 13:25:34 +0000 (+0000) Subject: (direct_output_for_insert): Don't change IT's X-Git-Tag: emacs-pretest-21.0.106~165 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ae76d741c2fe2f8c3c01ed0f64d73e19a09021bc;p=emacs.git (direct_output_for_insert): Don't change IT's stop_charpos to something in front of its current position. --- diff --git a/src/dispnew.c b/src/dispnew.c index 165b6e4757b..78d3748c259 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -3482,6 +3482,7 @@ direct_output_for_insert (g) it.current_y = w->cursor.y; it.end_charpos = PT; it.stop_charpos = min (PT, it.stop_charpos); + it.stop_charpos = max (IT_CHARPOS (it), it.stop_charpos); /* More than one display element may be returned for PT - 1 if (i) it's a control character which is translated into `\003' or