From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andre Spiegel Newsgroups: gmane.emacs.devel Subject: Re: "Symbol's value as variable is void" on vc-diff Date: Mon, 19 Apr 2004 19:53:19 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <1082418799.1142.8.camel@localhost> References: <20040416120453.38AD.JMBARRANQUERO@wke.es> <1082111253.771.267.camel@localhost> <20040416153410.6A6C.JMBARRANQUERO@wke.es> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-8DCoUDuhsuk5AEO5/jHi" X-Trace: sea.gmane.org 1082419664 31653 80.91.224.253 (20 Apr 2004 00:07:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 20 Apr 2004 00:07:44 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Apr 20 02:07:37 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BFinZ-00035z-00 for ; Tue, 20 Apr 2004 02:07:37 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BFinZ-0004xF-00 for ; Tue, 20 Apr 2004 02:07:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BFimb-0000FL-Fl for emacs-devel@quimby.gnus.org; Mon, 19 Apr 2004 20:06:37 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BFigS-0007IV-Ti for emacs-devel@gnu.org; Mon, 19 Apr 2004 20:00:16 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BFiaW-0005zu-FK for emacs-devel@gnu.org; Mon, 19 Apr 2004 19:54:45 -0400 Original-Received: from [193.113.160.16] (helo=mail.o2.co.uk) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BFiaC-0005sC-7v for emacs-devel@gnu.org; Mon, 19 Apr 2004 19:53:48 -0400 Original-Received: from [12.111.71.50] (12.111.71.50) by mail.o2.co.uk (7.0.020) (authenticated as andre.spiegel@o2online.de) id 407E93510017167C; Tue, 20 Apr 2004 00:53:22 +0100 Original-To: Juanma Barranquero In-Reply-To: <20040416153410.6A6C.JMBARRANQUERO@wke.es> X-Mailer: Ximian Evolution 1.4.5 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:21917 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:21917 --=-8DCoUDuhsuk5AEO5/jHi Content-Type: text/plain Content-Transfer-Encoding: 7bit On Fri, 2004-04-16 at 09:41, Juanma Barranquero wrote: > Were you waiting for that Ah, now I see what I did wrong. Sorry, the problem should be fixed by the patch below. (I can't install it right now because somehow I can't get savannah access.) --=-8DCoUDuhsuk5AEO5/jHi Content-Disposition: inline; filename=vc.patch Content-Type: text/x-patch; name=vc.patch; charset=iso-8859-15 Content-Transfer-Encoding: 7bit --- vc-hooks.el.~1.167.~ 2004-04-16 06:21:51.000000000 -0400 +++ vc-hooks.el 2004-04-19 19:44:49.000000000 -0400 @@ -474,8 +474,8 @@ (indirect-function (vc-find-backend-function (vc-backend file) 'diff)))) - (not (eq (caddr err) 5))) - (signal 'wrong-number-of-arguments err) + (not (eq (caddr err) 4))) + (signal (car err) (cadr err)) (vc-call diff file)))))) (defun vc-workfile-version (file) --- vc.el.~1.376.~ 2004-04-16 06:21:24.000000000 -0400 +++ vc.el 2004-04-19 19:41:07.000000000 -0400 @@ -2361,7 +2361,7 @@ (vc-find-backend-function (vc-backend file) 'print-log)))) (not (eq (caddr err) 2))) - (signal 'wrong-number-of-arguments err) + (signal (car err) (cadr err)) ;; for backward compatibility (vc-call print-log file) (set-buffer "*vc*")))) --=-8DCoUDuhsuk5AEO5/jHi Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://mail.gnu.org/mailman/listinfo/emacs-devel --=-8DCoUDuhsuk5AEO5/jHi--