aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-01-29 17:31:43 +0000
committerRichard M. Stallman2005-01-29 17:31:43 +0000
commit5a92a9eb7821b7efe89ef2c4d53f72099e64531e (patch)
treedb6bb99203868ed8d2bac5d2ae92c99dfc90b73d
parent137e400204f8d8046d9ef12b9f627106ed06b4d7 (diff)
downloademacs-5a92a9eb7821b7efe89ef2c4d53f72099e64531e.tar.gz
emacs-5a92a9eb7821b7efe89ef2c4d53f72099e64531e.zip
*** empty log message ***
-rw-r--r--etc/NEWS10
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lisp/ChangeLog28
-rw-r--r--src/ChangeLog6
4 files changed, 43 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 9d24c5dc32c..8ccaee23b06 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2474,11 +2474,6 @@ configuration files.
2474 2474
2475* Incompatible Lisp Changes in Emacs 21.4 2475* Incompatible Lisp Changes in Emacs 21.4
2476 2476
2477** An element of buffer-undo-list can now have the form (FUNNAME .
2478ARGS), where FUNNAME is a symbol other than t or nil. That stands for
2479a high-level change that should be undone by evaluating (apply FUNNAME
2480ARGS).
2481
2482+++ 2477+++
2483** `suppress-keymap' now works by remapping `self-insert-command' to 2478** `suppress-keymap' now works by remapping `self-insert-command' to
2484the command `undefined'. (In earlier Emacs versions, it used 2479the command `undefined'. (In earlier Emacs versions, it used
@@ -2492,6 +2487,11 @@ the command `undefined'. (In earlier Emacs versions, it used
2492 2487
2493* Lisp Changes in Emacs 21.4 2488* Lisp Changes in Emacs 21.4
2494 2489
2490** An element of buffer-undo-list can now have the form (FUNNAME .
2491ARGS), where FUNNAME is a symbol other than t or nil. That stands for
2492a high-level change that should be undone by evaluating (apply FUNNAME
2493ARGS).
2494
2495+++ 2495+++
2496** The line-move, scroll-up, and scroll-down functions will now 2496** The line-move, scroll-up, and scroll-down functions will now
2497modify the window vscroll to scroll through display rows that are 2497modify the window vscroll to scroll through display rows that are
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 92d06473a80..503a8bead04 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12005-01-29 Richard M. Stallman <rms@gnu.org>
2
3 * movemail.c (popmail): Don't use Errmsg as format string.
4
12004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 52004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 6
3 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not 7 * make-docfile.c: Include stdlib.h even if WINDOWSNT is not
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0ac939a0d6a..8e3414fe20d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,31 @@
12005-01-29 Richard M. Stallman <rms@gnu.org>
2
3 * ses.el (undo-more): defadvice deleted.
4 (ses-begin-change): Doc fix.
5
6 * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
7 instead of rebinding C-x u and C-_.
8
9 * files.el (normal-backup-enable-predicate): Return nil for files
10 in /tmp, regardless of temporary-file-directory.
11
12 * man.el (Man-getpage-in-background): Disable undo in Man buffer.
13
14 * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
15 (open-rectangle, delete-whitespace-rectangle-line)
16 (clear-rectangle-line): If FILL, pass t instead of FILL
17 for move-to-column's 2nd arg.
18
19 * simple.el (undo): Fix the test for continuing a series of undos.
20 (undo-more): Set pending-undo-list to t when we reach end.
21 (pending-undo-list): defvar moved up.
22
23 * wid-edit.el (widget-button-click):
24 Shorten the range of the track-mouse binding.
25
26 * comint.el (comint-insert-input): Undo previous changes;
27 use last-input-event in interactive spec.
28
12005-01-29 Eli Zaretskii <eliz@gnu.org> 292005-01-29 Eli Zaretskii <eliz@gnu.org>
2 30
3 * progmodes/compile.el (compilation-start): Bind buffer-read-only 31 * progmodes/compile.el (compilation-start): Bind buffer-read-only
diff --git a/src/ChangeLog b/src/ChangeLog
index 6030a3a4886..6c2b21823ad 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12005-01-29 Richard M. Stallman <rms@gnu.org>
2
3 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
4
5 * undo.c (Fprimitive_undo): Handle (FUNNAME . ARGS) by calling FUNNAME.
6
12005-01-28 Stefan Monnier <monnier@iro.umontreal.ca> 72005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * keymap.c (access_keymap): YAILOM. 9 * keymap.c (access_keymap): YAILOM.