aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-26 12:31:42 +0000
committerGerd Moellmann1999-11-26 12:31:42 +0000
commitb3b9859282bb1b4102e8e8a4edc7daf0fd31b868 (patch)
tree5e884c0f2763d3d9ca22a6e61894925aa1bfed6c
parent0087ade67a7c8e31b32579a353381fb00b53a112 (diff)
downloademacs-b3b9859282bb1b4102e8e8a4edc7daf0fd31b868.tar.gz
emacs-b3b9859282bb1b4102e8e8a4edc7daf0fd31b868.zip
*** empty log message ***
-rw-r--r--etc/NEWS13
-rw-r--r--src/ChangeLog11
2 files changed, 24 insertions, 0 deletions
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.
305 305
306Default is 0.25. 306Default is 0.25.
307 307
308** Comint (subshell) changes
309
310Comint now includes new features to send commands to running processes
311and redirect the output to a designated buffer or buffers.
312
313The command M-x comint-redirect-send-command reads a command and
314buffer name from the mini-buffer. The command is sent to the current
315buffer's process, and its output is inserted into the specified buffer.
316
317The command M-x comint-redirect-send-command-to-process acts like
318M-x comint-redirect-send-command but additionally reads the name of
319the buffer whose process should be used from the mini-buffer.
320
308** Changes to TeX mode 321** Changes to TeX mode
309 322
310The default mode has been changed from `plain-tex-mode' to 323The 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 @@
11999-11-26 Gerd Moellmann <gerd@gnu.org> 11999-11-26 Gerd Moellmann <gerd@gnu.org>
2 2
3 * textprop.c (set_text_properties): New function. Like
4 Fset_text_properties, but with additional parameter
5 SIGNAL_AFTER_CHANGE_P. If that is nil, don't signal after
6 changes.
7 (Fset_text_properties): Use it.
8
9 * insdel.c (insert_1_both): Call set_text_properties with last
10 parameter nil so that no after changes will be signaled.
11
12 * lisp.h: Add prototype for set_text_properties.
13
3 * xfaces.c (set_lface_from_font_name): Fix previous change. 14 * xfaces.c (set_lface_from_font_name): Fix previous change.
4 (recompute_basic_faces): Change assert to abort. 15 (recompute_basic_faces): Change assert to abort.
5 16