# HG changeset patch # User Richard M. Stallman # Date 1056969266 0 # Node ID ca4a1b3128f753f24dbc5967b21ac73b10315aae # Parent 3e0f0ad2d93d6d80279fb7b957a104706c551c57 (vc-default-show-log-entry): Use with-no-warnings. diff -r 3e0f0ad2d93d -r ca4a1b3128f7 lisp/vc.el --- a/lisp/vc.el Mon Jun 30 10:33:52 2003 +0000 +++ b/lisp/vc.el Mon Jun 30 10:34:26 2003 +0000 @@ -7,7 +7,7 @@ ;; Maintainer: Andre Spiegel ;; 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 @@ (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."