From: Kenichi Handa Date: Wed, 29 Dec 1999 00:57:25 +0000 (+0000) Subject: (read_process_output): Fix the args CHARPOS and LENINS X-Git-Tag: emacs-pretest-21.0.90~5602 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1c89844b125ac9ffc71a50b41ee6e26cc90fe448;p=emacs.git (read_process_output): Fix the args CHARPOS and LENINS to signal_after_change. --- diff --git a/src/process.c b/src/process.c index 04095b9179f..87699e299b3 100644 --- a/src/process.c +++ b/src/process.c @@ -3181,7 +3181,7 @@ read_process_output (proc, channel) else { insert_1_both (chars, nchars, nbytes, 0, 1, 1); - signal_after_change (opoint, 0, PT - opoint); + signal_after_change (before, 0, PT - before); update_compositions (before, PT, CHECK_BORDER); } set_marker_both (p->mark, p->buffer, PT, PT_BYTE);