aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-21 15:33:16 +0000
committerGerd Moellmann2000-08-21 15:33:16 +0000
commit7a912f6340fe1027f32deb356059423fe2a4f687 (patch)
treea84b4982cd19f1cdabc36ae1e4a03e63313e5ed8
parentc6a117f07b67896c632d6a36929d2cd5f7bebff5 (diff)
downloademacs-7a912f6340fe1027f32deb356059423fe2a4f687.tar.gz
emacs-7a912f6340fe1027f32deb356059423fe2a4f687.zip
*** empty log message ***
-rw-r--r--etc/NEWS12
-rw-r--r--lisp/ChangeLog10
2 files changed, 22 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index ba18c42b9aa..71b784487fb 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -261,6 +261,18 @@ There is now support for Imenu to index headings. A new command
261`outline-headers-as-kill' copies the visible headings in the region to 261`outline-headers-as-kill' copies the visible headings in the region to
262the kill ring, e.g. to produce a table of contents. 262the kill ring, e.g. to produce a table of contents.
263 263
264** Changes to Emacs Server
265
266*** There new option `server-kill-new-buffers' specifies what to do
267with buffers when done with them. If non-nil, the default, buffers
268are killed, unless they were already present before visiting them with
269Emacs Server. If nil, `server-temp-file-regexp' specifies which
270buffers to kill, as before.
271
272Please note that only buffers are killed that still have a client,
273i.e. buffers visited which `emacsclient --no-wait' are never killed in
274this way.
275
264** Changes to Show Paren mode. 276** Changes to Show Paren mode.
265 277
266*** Overlays used by Show Paren mode now use a priority property. 278*** Overlays used by Show Paren mode now use a priority property.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3bacc1cbf0c..d081e6ccfda 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12000-08-21 Gerd Moellmann <gerd@gnu.org>
2
3 * server.el (server-kill-new-buffers): New user option.
4 (server-existing-buffer): New buffer-local variable.
5 (server-visit-files): When using an existing buffer, set
6 server-existing-buffer to t.
7 (server-buffer-done): If server-kill-new-buffers is t, kill the
8 buffer, unless it was already present before visiting it with
9 Emacs server.
10
12000-08-21 Eli Zaretskii <eliz@is.elta.co.il> 112000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
2 12
3 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag, 13 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,