diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
1 files changed, 4 insertions, 1 deletions
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) | |||
| 3082 | insert_before_markers (temp_buf, nbytes); | 3082 | insert_before_markers (temp_buf, nbytes); |
| 3083 | } | 3083 | } |
| 3084 | else | 3084 | else |
| 3085 | insert_1_both (chars, nchars, nbytes, 0, 1, 1); | 3085 | { |
| 3086 | insert_1_both (chars, nchars, nbytes, 0, 1, 1); | ||
| 3087 | signal_after_change (opoint, 0, PT - opoint); | ||
| 3088 | } | ||
| 3086 | set_marker_both (p->mark, p->buffer, PT, PT_BYTE); | 3089 | set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
| 3087 | 3090 | ||
| 3088 | update_mode_lines++; | 3091 | update_mode_lines++; |