Mercurial > emacs
changeset 55100:6c3a528ee0ca
(vc-print-log): Fix code that handles wrong-number-of-arguments in backend
call.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 23 Apr 2004 21:02:23 +0000 |
parents | a856350e29d5 |
children | 40c0e582dc9b |
files | lisp/vc.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Fri Apr 23 21:01:07 2004 +0000 +++ b/lisp/vc.el Fri Apr 23 21:02:23 2004 +0000 @@ -7,7 +7,7 @@ ;; Maintainer: Andre Spiegel <spiegel@gnu.org> ;; Keywords: tools -;; $Id: vc.el,v 1.375 2004/04/11 15:05:18 spiegel Exp $ +;; $Id: vc.el,v 1.376 2004/04/16 10:21:24 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -2357,11 +2357,11 @@ ;; without the optional buffer argument (for backward compatibility). ;; Otherwise, resignal. (if (or (not (eq (cadr err) - (indirect-function - (vc-find-backend-function (vc-backend file) + (indirect-function + (vc-find-backend-function (vc-backend file) 'print-log)))) (not (eq (caddr err) 2))) - (signal 'wrong-number-of-arguments err) + (signal (car err) (cdr err)) ;; for backward compatibility (vc-call print-log file) (set-buffer "*vc*"))))