Mercurial > emacs
diff src/process.c @ 23762:f69129948f65
(read_process_output): Call signal_after_change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Wed, 25 Nov 1998 01:26:56 +0000 |
| parents | 5de09eb31c38 |
| children | 18e5d1cfa74b |
line wrap: on
line diff
--- a/src/process.c Wed Nov 25 01:07:19 1998 +0000 +++ b/src/process.c Wed Nov 25 01:26:56 1998 +0000 @@ -3082,7 +3082,10 @@ 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++;
