diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 09:32:03 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 09:32:03 -0700 |
commit | b1d876f1a19ae65c8a8dd61c4ce17055ca53f16c (patch) | |
tree | 5dd8a40d7e3e0b86749cecfee7443ad81bdbfe5e /lisp/emacs-lisp | |
parent | b766f86726fc2828a035cb8db149598a3a84de96 (diff) | |
parent | d6cd56f187a791983579bf5d4ce3702d2ddf2499 (diff) | |
download | emacs-b1d876f1a19ae65c8a8dd61c4ce17055ca53f16c.tar.gz emacs-b1d876f1a19ae65c8a8dd61c4ce17055ca53f16c.tar.bz2 emacs-b1d876f1a19ae65c8a8dd61c4ce17055ca53f16c.zip |
Merge from mainline.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5e24b80ac5a..5c845e59c85 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3776,7 +3776,8 @@ that suppresses all warnings during execution of BODY." (defun byte-compile-save-excursion (form) (if (and (eq 'set-buffer (car-safe (car-safe (cdr form)))) (byte-compile-warning-enabled-p 'suspicious)) - (byte-compile-warn "`save-excursion' defeated by `set-buffer'")) + (byte-compile-warn + "Use `with-current-buffer' rather than save-excursion+set-buffer")) (byte-compile-out 'byte-save-excursion 0) (byte-compile-body-do-effect (cdr form)) (byte-compile-out 'byte-unbind 1)) |