*** empty log message ***
authorGerd Moellmann <gerd@gnu.org>
Fri, 26 Nov 1999 12:31:42 +0000 (12:31 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 26 Nov 1999 12:31:42 +0000 (12:31 +0000)
etc/NEWS
src/ChangeLog

index 8c66731..ec323a0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -305,6 +305,19 @@ specifies a number of lines.  If nil, don't resize.
 
 Default is 0.25.
 
+** Comint (subshell) changes
+
+Comint now includes new features to send commands to running processes
+and redirect the output to a designated buffer or buffers.
+
+The command M-x comint-redirect-send-command reads a command and
+buffer name from the mini-buffer.  The command is sent to the current
+buffer's process, and its output is inserted into the specified buffer.
+
+The command M-x comint-redirect-send-command-to-process acts like
+M-x comint-redirect-send-command but additionally reads the name of
+the buffer whose process should be used from the mini-buffer.
+
 ** Changes to TeX mode
 
 The default mode has been changed from `plain-tex-mode' to
index c6439fd..98e00fa 100644 (file)
@@ -1,5 +1,16 @@
 1999-11-26  Gerd Moellmann  <gerd@gnu.org>
 
+       * textprop.c (set_text_properties): New function.  Like
+       Fset_text_properties, but with additional parameter
+       SIGNAL_AFTER_CHANGE_P.  If that is nil, don't signal after
+       changes.
+       (Fset_text_properties): Use it.
+
+       * insdel.c (insert_1_both): Call set_text_properties with last
+       parameter nil so that no after changes will be signaled.
+
+       * lisp.h: Add prototype for set_text_properties.
+
        * xfaces.c (set_lface_from_font_name): Fix previous change.
        (recompute_basic_faces): Change assert to abort.