From: Gerd Moellmann Date: Fri, 26 Nov 1999 12:31:42 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.90~5966 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3b9859282bb1b4102e8e8a4edc7daf0fd31b868;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 8c66731422b..ec323a06117 100644 --- 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 diff --git a/src/ChangeLog b/src/ChangeLog index c6439fde6b7..98e00fac2ba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,16 @@ 1999-11-26 Gerd Moellmann + * 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.