summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-12-01 03:14:02 +0000
committerGlenn Morris <rgm@gnu.org>2009-12-01 03:14:02 +0000
commit3ab4308bab268a0d5591823aca59d0dec85816be (patch)
tree3f838e0b40a8cd3fc3087eb0e95e7104f4f3e116 /lisp/emacs-lisp
parent0c9ff2c5167aac3358fe735a68e3472acbcf6e57 (diff)
downloademacs-3ab4308bab268a0d5591823aca59d0dec85816be.tar.gz
emacs-3ab4308bab268a0d5591823aca59d0dec85816be.tar.bz2
emacs-3ab4308bab268a0d5591823aca59d0dec85816be.zip
(byte-compile-save-excursion): Make message consistent with others (no
final period).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index bf7c2c113f0..c633f7f6567 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -3714,7 +3714,7 @@ 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 "`save-excursion' defeated by `set-buffer'"))
(byte-compile-out 'byte-save-excursion 0)
(byte-compile-body-do-effect (cdr form))
(byte-compile-out 'byte-unbind 1))