diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-06-30 10:34:26 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-06-30 10:34:26 +0000 |
commit | c142f96c5a4631b654b1babf045cad107dc06b89 (patch) | |
tree | aee212386a465b0557a00c82f524429a62cf82c3 /lisp/vc.el | |
parent | dd929b41f1ad46e54a9767c84751223c8e9d1f8f (diff) | |
download | emacs-c142f96c5a4631b654b1babf045cad107dc06b89.tar.gz |
(vc-default-show-log-entry): Use with-no-warnings.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index c724d55509a..b14290bd295 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -7,7 +7,7 @@ ;; Maintainer: Andre Spiegel <spiegel@gnu.org> ;; Keywords: tools -;; $Id: vc.el,v 1.355 2003/05/31 16:47:57 monnier Exp $ +;; $Id: vc.el,v 1.356 2003/06/20 13:21:24 teirllm Exp $ ;; This file is part of GNU Emacs. @@ -2360,7 +2360,8 @@ allowed and simply skipped)." (set-buffer-modified-p nil))))) (defun vc-default-show-log-entry (backend rev) - (log-view-goto-rev rev)) + (with-no-warnings + (log-view-goto-rev rev))) (defun vc-default-comment-history (backend file) "Return a string with all log entries stored in BACKEND for FILE." |