comparison 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
comparison
equal deleted inserted replaced
23761:a99c30431979 23762:f69129948f65
3080 temp_buf = (char *) alloca (nbytes); 3080 temp_buf = (char *) alloca (nbytes);
3081 bcopy (XSTRING (p->decoding_buf)->data, temp_buf, nbytes); 3081 bcopy (XSTRING (p->decoding_buf)->data, temp_buf, nbytes);
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++;
3089 3092
3090 /* Make sure opoint and the old restrictions 3093 /* Make sure opoint and the old restrictions