aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorKenichi Handa1999-12-29 00:57:25 +0000
committerKenichi Handa1999-12-29 00:57:25 +0000
commit1c89844b125ac9ffc71a50b41ee6e26cc90fe448 (patch)
tree0ce939f5e663d2f6d8468a68c428b0a31b9425af /src/process.c
parent7b712ad8f58f9b4db8bfc79fe1ef0fee2c7e7794 (diff)
downloademacs-1c89844b125ac9ffc71a50b41ee6e26cc90fe448.tar.gz
emacs-1c89844b125ac9ffc71a50b41ee6e26cc90fe448.zip
(read_process_output): Fix the args CHARPOS and LENINS
to signal_after_change.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
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)
3181 else 3181 else
3182 { 3182 {
3183 insert_1_both (chars, nchars, nbytes, 0, 1, 1); 3183 insert_1_both (chars, nchars, nbytes, 0, 1, 1);
3184 signal_after_change (opoint, 0, PT - opoint); 3184 signal_after_change (before, 0, PT - before);
3185 update_compositions (before, PT, CHECK_BORDER); 3185 update_compositions (before, PT, CHECK_BORDER);
3186 } 3186 }
3187 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); 3187 set_marker_both (p->mark, p->buffer, PT, PT_BYTE);