aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-05 12:54:15 +0000
committerGerd Moellmann2001-10-05 12:54:15 +0000
commitace64e0a1fd12d40ab1f47b2f18c7cd0524e3d8b (patch)
tree86a8b2b62e69787957a2b89e08d4f982a50b66ad
parenta9d14e54a813172e7a841371981e426c72f8feb4 (diff)
downloademacs-ace64e0a1fd12d40ab1f47b2f18c7cd0524e3d8b.tar.gz
emacs-ace64e0a1fd12d40ab1f47b2f18c7cd0524e3d8b.zip
*** empty log message ***
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog7
-rw-r--r--src/ChangeLog4
3 files changed, 14 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 628aab899f7..6af12fe9c58 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -49,6 +49,9 @@ variables, including buffer-local and frame-local variables.
49** Functions from `post-gc-hook' are run at the end of garbage 49** Functions from `post-gc-hook' are run at the end of garbage
50collection. The hook is run with GC inhibited, so use it with care. 50collection. The hook is run with GC inhibited, so use it with care.
51 51
52** If the second argument to `copy-file' is the name of a directory,
53the file is copied to that directory instead of signaling an error.
54
52 55
53* Installation Changes in Emacs 21.1 56* Installation Changes in Emacs 21.1
54 57
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 531b8fe5d6f..833f3101e2a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12001-10-05 Gerd Moellmann <gerd@gnu.org>
2
3 * progmodes/compile.el (compilation-buffer-name): New function.
4 (compile-internal): Use it to determine the name of the
5 compilation buffer.
6
12001-10-05 Miles Bader <miles@gnu.org> 72001-10-05 Miles Bader <miles@gnu.org>
2 8
3 * progmodes/compile.el (grep-use-null-device): New variable. 9 * progmodes/compile.el (grep-use-null-device): New variable.
@@ -20,6 +26,7 @@
20 (minibuffer-contents-no-properties, delete-minibuffer-contents): 26 (minibuffer-contents-no-properties, delete-minibuffer-contents):
21 Functions removed (now subrs). 27 Functions removed (now subrs).
22 (minibuffer-prompt-width): Use `minibuffer-prompt-end'. 28 (minibuffer-prompt-width): Use `minibuffer-prompt-end'.
29
23 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer) 30 * minibuf-eldef.el (minibuf-eldef-setup-minibuffer)
24 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions 31 (minibuf-eldef-update-minibuffer): Use `minibuffer-' functions
25 instead of calling `field-' functions directly. 32 instead of calling `field-' functions directly.
diff --git a/src/ChangeLog b/src/ChangeLog
index 172949e5806..de0875d764e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-10-05 Gerd Moellmann <gerd@gnu.org>
2
3 * fileio.c (Fcopy_file): If NEWNAME is a directory copy FILE there.
4
12001-10-05 Miles Bader <miles@gnu.org> 52001-10-05 Miles Bader <miles@gnu.org>
2 6
3 * minibuf.c (Fminibuffer_prompt_end, Fminibuffer_contents) 7 * minibuf.c (Fminibuffer_prompt_end, Fminibuffer_contents)