aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-06-17 15:06:25 +0000
committerChong Yidong2009-06-17 15:06:25 +0000
commitb933010836821683b785324ae102a6aa02affdf8 (patch)
tree03b9efb82d20dfe166bb32e0d97571fcac15ed3a
parentd2fac4a9fdef031d722511faeb7d6217d87c18c7 (diff)
downloademacs-b933010836821683b785324ae102a6aa02affdf8.tar.gz
emacs-b933010836821683b785324ae102a6aa02affdf8.zip
* files.el (save-some-buffers-action-alist): Fix last change (Bug#3578).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/files.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 04977ca9f14..c5dd0e621c7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-06-17 Tiago Saboga <tiagosaboga@gmail.com> (tiny change)
2
3 * files.el (save-some-buffers-action-alist): Fix last
4 change (Bug#3578).
5
12009-06-17 Glenn Morris <rgm@gnu.org> 62009-06-17 Glenn Morris <rgm@gnu.org>
2 7
3 * files.el (dir-locals-set-directory-class): Fix doc typo. 8 * files.el (dir-locals-set-directory-class): Fix doc typo.
diff --git a/lisp/files.el b/lisp/files.el
index 921724d8a79..91e046bc4af 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4358,7 +4358,7 @@ This requires the external program `diff' to be in your `exec-path'."
4358 nil) 4358 nil)
4359 "view this buffer") 4359 "view this buffer")
4360 (?d ,(lambda (buf) 4360 (?d ,(lambda (buf)
4361 (if (null buffer-file-name) 4361 (if (null (buffer-file-name buf))
4362 (message "Not applicable: no file") 4362 (message "Not applicable: no file")
4363 (save-window-excursion (diff-buffer-with-file buf)) 4363 (save-window-excursion (diff-buffer-with-file buf))
4364 (if (not enable-recursive-minibuffers) 4364 (if (not enable-recursive-minibuffers)