diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-03 09:29:00 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-12-03 09:29:00 +0000 |
commit | e392d1cc57e6130a0b468ac4236d66fd671e1424 (patch) | |
tree | a24ea4ed7c023fa9548b399ca383dcb345d23a08 /lisp/ediff-diff.el | |
parent | 1682490ce8a8e0f61f4e2ae5ca5f13a771437216 (diff) | |
download | emacs-e392d1cc57e6130a0b468ac4236d66fd671e1424.tar.gz |
* ediff-util.el (ediff-setup):
* ediff-diff.el (ediff-prepare-error-list): Disable undo for
ediff-error-buffer.
Diffstat (limited to 'lisp/ediff-diff.el')
-rw-r--r-- | lisp/ediff-diff.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/ediff-diff.el b/lisp/ediff-diff.el index a835fb8e750..1b51b440f05 100644 --- a/lisp/ediff-diff.el +++ b/lisp/ediff-diff.el @@ -343,6 +343,7 @@ one optional arguments, diff-number to refine.") (get-buffer-create (ediff-unique-buffer-name "*ediff-errors" "*")))) (ediff-with-current-buffer ediff-error-buffer + (setq buffer-undo-list t) (erase-buffer) (insert (ediff-with-current-buffer diff-buff (buffer-string))) (goto-char (point-min)) |