changeset 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 a99c30431979
children 63f667e05ff0
files src/process.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
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++;