From: Luc Teirlinck Date: Mon, 27 Dec 2004 05:17:09 +0000 (+0000) Subject: (Buffer-menu-revert-function): Clear out undo info before reverting X-Git-Tag: ttn-vms-21-2-B4~3156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fda73b4587f9049dd7b7b39553366fe120957b3c;p=emacs.git (Buffer-menu-revert-function): Clear out undo info before reverting and disable undo recording while reverting. --- diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el index 1c3fa704041..8e1a3e69295 100644 --- a/lisp/buff-menu.el +++ b/lisp/buff-menu.el @@ -198,11 +198,15 @@ Letters do not insert themselves; instead, they are commands. (revert-buffer)) (defun Buffer-menu-revert-function (ignore1 ignore2) + (or (eq buffer-undo-list t) + (setq buffer-undo-list nil)) ;; We can not use save-excursion here. The buffer gets erased. (let ((ocol (current-column)) (oline (progn (move-to-column 4) (get-text-property (point) 'buffer))) - (prop (point-min))) + (prop (point-min)) + ;; do not make undo records for the reversion. + (buffer-undo-list t)) (list-buffers-noselect Buffer-menu-files-only) (while (setq prop (next-single-property-change prop 'buffer)) (when (eq (get-text-property prop 'buffer) oline)