From: Richard M. Stallman Date: Wed, 25 Nov 1998 01:26:56 +0000 (+0000) Subject: (read_process_output): Call signal_after_change. X-Git-Tag: emacs-20.4~1187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1741e72de6fd692ec3de090b1c37eef53f24fba4;p=emacs.git (read_process_output): Call signal_after_change. --- diff --git a/src/process.c b/src/process.c index ff8011316e0..a65eb2413d7 100644 --- a/src/process.c +++ b/src/process.c @@ -3082,7 +3082,10 @@ read_process_output (proc, channel) insert_before_markers (temp_buf, nbytes); } else - insert_1_both (chars, nchars, nbytes, 0, 1, 1); + { + insert_1_both (chars, nchars, nbytes, 0, 1, 1); + signal_after_change (opoint, 0, PT - opoint); + } set_marker_both (p->mark, p->buffer, PT, PT_BYTE); update_mode_lines++;