aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-04-23 16:57:31 +0000
committerRichard M. Stallman2005-04-23 16:57:31 +0000
commit469bc6798666dc43ecb50daf819f1c45e7d5541c (patch)
tree2ee79623cdd03cd6facf08ca923786bd4253efa1
parent44dce0fb4351151515b608e06f8a8b3e9df45019 (diff)
downloademacs-469bc6798666dc43ecb50daf819f1c45e7d5541c.tar.gz
emacs-469bc6798666dc43ecb50daf819f1c45e7d5541c.zip
*** empty log message ***
-rw-r--r--etc/NEWS1
-rw-r--r--lisp/ChangeLog47
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog9
4 files changed, 61 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3aecf639e5c..a27a330fe68 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2856,6 +2856,7 @@ alist whose cdr is `eq' to a specified value.
2856*** New macro define-obsolete-variable-alias to combine defvaralias and 2856*** New macro define-obsolete-variable-alias to combine defvaralias and
2857make-obsolete-variable. 2857make-obsolete-variable.
2858 2858
2859+++
2859** copy-file now takes an additional option arg MUSTBENEW. 2860** copy-file now takes an additional option arg MUSTBENEW.
2860 2861
2861This argument works like the MUSTBENEW argument of write-file. 2862This argument works like the MUSTBENEW argument of write-file.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 268fd9d2e0f..f119f89ab6c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,50 @@
12005-04-23 Richard M. Stallman <rms@gnu.org>
2
3 * files.el (read-directory-name): Always pass non-nil
4 DEFAULT-FILENAME arg to read-file-name.
5 (backup-buffer-copy, basic-save-buffer-2): Take care against
6 writing thru an unexpected existing symlink.
7 (revert-buffer): In indirect buffer, revert the base buffer.
8 (magic-mode-alist): Doc fix.
9 (buffer-stale-function): Doc fix.
10 (minibuffer-with-setup-hook): Avoid warning.
11 (mode-require-final-newline): Doc and custom fix.
12
13 * follow.el (follow-end-of-buffer): Use with-no-warnings.
14
15 * font-lock.el (font-lock-comment-face): On terminals with few colors,
16 use the default appearance.
17 (font-lock-comment-delimiter-face): New face, new variable.
18
19 * imenu.el (imenu--generic-function): The official position of a
20 definition is the start of the line that BEG is in.
21
22 * midnight.el (midnight-timer): Move defvar up.
23
24 * mouse.el (mouse-drag-region-1): Delete some debugging code.
25
26 * saveplace.el (save-place-to-alist): Use with-no-warnings.
27
28 * startup.el (command-line): Use with-no-warnings.
29
30 * window.el (window-size-fixed): New defvar.
31
32 * emacs-lisp/easymenu.el (easy-menu-do-define): Use defalias, not fset.
33
34 * mail/rmail.el (rmail-font-lock-keywords):
35 Use font-lock-comment-delimiter-face.
36
37 * mail/sendmail.el (mail-font-lock-keywords):
38 Use font-lock-comment-delimiter-face.
39
40 * progmodes/compile.el (next-error-highlight-timer): New defvar.
41
422005-04-23 SAITO Takuya <tabmore@rivo.mediatti.net> (tiny change)
43
44 * progmodes/compile.el (compilation-mode-font-lock-keywords):
45 Specify t for LAXMATCH when matching directories.
46 Save match data around compilation-compat-error-properties form.
47
12005-04-23 David Kastrup <dak@gnu.org> 482005-04-23 David Kastrup <dak@gnu.org>
2 49
3 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode): 50 * textmodes/tex-mode.el (TeX-mode, plain-TeX-mode, LaTeX-mode):
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index f6f29a12fbf..879f3a81e4f 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12005-04-23 Richard M. Stallman <rms@gnu.org>
2
3 * files.texi (Changing Files): Document MUSTBENEW arg in copy-file.
4
12005-04-22 Nick Roberts <nickrob@snap.net.nz> 52005-04-22 Nick Roberts <nickrob@snap.net.nz>
2 6
3 * windows.texi (Cyclic Window Ordering): Clarify window-list. 7 * windows.texi (Cyclic Window Ordering): Clarify window-list.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2a6ebdc6c32..d5e157c70c3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12005-04-23 Richard M. Stallman <rms@gnu.org>
2
3 * fileio.c (Fcopy_file): New arg MUSTBENEW.
4 (Frename_file): Pass new arg to Fcopy_file.
5
6 * window.c (window_size_fixed): Variable deleted.
7 (syms_of_window): Initialize window-size-fixed to nil.
8 But don't DEFVAR window_size_fixed.
9
12005-04-23 Andreas Schwab <schwab@suse.de> 102005-04-23 Andreas Schwab <schwab@suse.de>
2 11
3 * m/macppc.h (LD_SWITCH_MACHINE) [LINUX]: Don't define. 12 * m/macppc.h (LD_SWITCH_MACHINE) [LINUX]: Don't define.