]> git.eshelyaron.com Git - emacs.git/commitdiff
(undo): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 27 Dec 2004 22:12:53 +0000 (22:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 27 Dec 2004 22:12:53 +0000 (22:12 +0000)
lisp/ChangeLog
lisp/simple.el

index f3f943a52a2744f225125f0cd441db9fcf996e72..22fac866e388b23ae1974dc1a9cf66e91adbcf1e 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-27  Richard M. Stallman  <rms@gnu.org>
+
+       * simple.el (undo): Fix previous change.
+
 2004-12-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * term/mac-win.el: Sync with x-win.el.  Rearrange the contents.
@@ -6,6 +10,16 @@
 
 2004-12-27  Richard M. Stallman  <rms@gnu.org>
 
+       * files.el (buffer-save-without-query): New var (buffer-local).
+       (save-some-buffers): Save those buffers first, w/o asking.
+
+       * files.el (insert-directory-ls-version): New variable.
+       (insert-directory): When ls returns an error, test the version
+       number to decide what the return code means.
+       With --dired output format, detect and distinguish lines
+       that are really error messages.
+       (insert-directory-adj-pos): New function.
+       
        * bookmark.el (bookmark-jump): Nice error if BOOKMARK is nil.
 
        * battery.el (battery-mode-line-format): Remove initial spaces.
@@ -59,7 +73,9 @@
 
        * simple.el (undo-list-saved): New variable (buffer-local).
        (undo): Set and test it.
-
+       (buffer-disable-undo): Moved here from buffer.c.
+       Clear out undo-list-saved.
+       
        * international/mule.el (decode-coding-inserted-region): 
        Set buffer-undo-list in a correct and optimal way.
 
index 008d52eabc194280445dcda82d23b9cc8cefdd2d..b2c6d9df8668d4e95ba368d93fbe921989c6d7c4 100644 (file)
@@ -1263,7 +1263,10 @@ as an argument limits undo to changes within the current region."
     (unless (and (eq last-command 'undo)
                 ;; If something (a timer or filter?) changed the buffer
                 ;; since the previous command, don't continue the undo seq.
-                (eq undo-list-saved buffer-undo-list))
+                (let ((list buffer-undo-list))
+                  (while (eq (car list) nil)
+                    (setq list (cdr list)))
+                  (eq undo-list-saved list)))
       (setq undo-in-region
            (if transient-mark-mode mark-active (and arg (not (numberp arg)))))
       (if undo-in-region
@@ -1527,8 +1530,9 @@ is not *inside* the region START...END."
 ;; so it had better not do a lot of consing.
 (setq undo-outer-limit-function 'undo-outer-limit-truncate)
 (defun undo-outer-limit-truncate (size)
-  (if (yes-or-no-p (format "Buffer %s undo info is %d bytes long; discard it? "
-                          (buffer-name) size))
+  (if (let (use-dialog-box)
+       (yes-or-no-p (format "Buffer %s undo info is %d bytes long; discard it? "
+                            (buffer-name) size)))
       (progn (setq buffer-undo-list nil) t)
     nil))
 \f