]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sat, 29 Jan 2005 17:31:43 +0000 (17:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 29 Jan 2005 17:31:43 +0000 (17:31 +0000)
etc/NEWS
lib-src/ChangeLog
lisp/ChangeLog
src/ChangeLog

index 9d24c5dc32cd3825834891ed439423c64a65117b..8ccaee23b06c60842c585199822e11d7f58d05fd 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2474,11 +2474,6 @@ configuration files.
 \f
 * Incompatible Lisp Changes in Emacs 21.4
 
-** An element of buffer-undo-list can now have the form (FUNNAME .
-ARGS), where FUNNAME is a symbol other than t or nil.  That stands for
-a high-level change that should be undone by evaluating (apply FUNNAME
-ARGS).
-
 +++
 ** `suppress-keymap' now works by remapping `self-insert-command' to
 the command `undefined'.  (In earlier Emacs versions, it used
@@ -2492,6 +2487,11 @@ the command `undefined'.  (In earlier Emacs versions, it used
 \f
 * Lisp Changes in Emacs 21.4
 
+** An element of buffer-undo-list can now have the form (FUNNAME .
+ARGS), where FUNNAME is a symbol other than t or nil.  That stands for
+a high-level change that should be undone by evaluating (apply FUNNAME
+ARGS).
+
 +++
 ** The line-move, scroll-up, and scroll-down functions will now
 modify the window vscroll to scroll through display rows that are
index 92d06473a800ef6cc8d43bde42561fb969ec2ce1..503a8bead048acacfe64652675a7216122af539b 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-29  Richard M. Stallman  <rms@gnu.org>
+
+       * movemail.c (popmail): Don't use Errmsg as format string.
+
 2004-12-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * make-docfile.c: Include stdlib.h even if WINDOWSNT is not
index 0ac939a0d6ab0fbc1f82248bc61bbd642eba7f8d..8e3414fe20d5149094b8779bfb246cefc9c96a24 100644 (file)
@@ -1,3 +1,31 @@
+2005-01-29  Richard M. Stallman  <rms@gnu.org>
+
+       * ses.el (undo-more): defadvice deleted.
+       (ses-begin-change): Doc fix.
+
+       * dired.el (dired-mode-map): Remap `undo' and `advertised-undo'
+       instead of rebinding C-x u and C-_.
+
+       * files.el (normal-backup-enable-predicate): Return nil for files
+       in /tmp, regardless of temporary-file-directory.
+
+       * man.el (Man-getpage-in-background): Disable undo in Man buffer.
+
+       * rect.el (delete-rectangle-line, delete-extract-rectangle-line)
+       (open-rectangle, delete-whitespace-rectangle-line)
+       (clear-rectangle-line): If FILL, pass t instead of FILL 
+       for move-to-column's 2nd arg.
+
+       * simple.el (undo): Fix the test for continuing a series of undos.
+       (undo-more): Set pending-undo-list to t when we reach end.
+       (pending-undo-list): defvar moved up.
+
+       * wid-edit.el (widget-button-click):
+       Shorten the range of the track-mouse binding.
+
+       * comint.el (comint-insert-input): Undo previous changes;
+       use last-input-event in interactive spec.
+
 2005-01-29  Eli Zaretskii  <eliz@gnu.org>
 
        * progmodes/compile.el (compilation-start): Bind buffer-read-only
index 6030a3a488643554aa5444d5271762e679be1de7..6c2b21823adf5f850af13462d808df8155a87bab 100644 (file)
@@ -1,3 +1,9 @@
+2005-01-29  Richard M. Stallman  <rms@gnu.org>
+
+       * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
+
+       * undo.c (Fprimitive_undo): Handle (FUNNAME . ARGS) by calling FUNNAME.
+
 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * keymap.c (access_keymap): YAILOM.