aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Spiegel2004-04-16 10:21:24 +0000
committerAndré Spiegel2004-04-16 10:21:24 +0000
commita0fa8faddc760a5d7814062ec8582e7331adb6d0 (patch)
tree5d5c54dc8052856c312d810edda08c381d02416a
parent6a4940b235bf20a374992406b8b5052b186e51cc (diff)
downloademacs-a0fa8faddc760a5d7814062ec8582e7331adb6d0.tar.gz
emacs-a0fa8faddc760a5d7814062ec8582e7331adb6d0.zip
(vc-print-log): Quote signal.
-rw-r--r--lisp/vc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 801cf6d5759..676b6bd6b88 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -7,7 +7,7 @@
7;; Maintainer: Andre Spiegel <spiegel@gnu.org> 7;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8;; Keywords: tools 8;; Keywords: tools
9 9
10;; $Id: vc.el,v 1.374 2004/03/28 22:00:19 monnier Exp $ 10;; $Id: vc.el,v 1.375 2004/04/11 15:05:18 spiegel Exp $
11 11
12;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
13 13
@@ -2361,7 +2361,7 @@ If FOCUS-REV is non-nil, leave the point at that revision."
2361 (vc-find-backend-function (vc-backend file) 2361 (vc-find-backend-function (vc-backend file)
2362 'print-log)))) 2362 'print-log))))
2363 (not (eq (caddr err) 2))) 2363 (not (eq (caddr err) 2)))
2364 (signal wrong-number-of-arguments err) 2364 (signal 'wrong-number-of-arguments err)
2365 ;; for backward compatibility 2365 ;; for backward compatibility
2366 (vc-call print-log file) 2366 (vc-call print-log file)
2367 (set-buffer "*vc*")))) 2367 (set-buffer "*vc*"))))