From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Pirotte Newsgroups: gmane.lisp.guile.devel Subject: guile-gnome, master: fix unbound variable `&gw:bad-typespec' Date: Fri, 9 May 2014 14:28:14 -0300 Message-ID: <20140509142814.1640ddaf@capac> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/NR45EvsXZ2GrhrkDAIY0tfe" X-Trace: ger.gmane.org 1399656530 26268 80.91.229.3 (9 May 2014 17:28:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 9 May 2014 17:28:50 +0000 (UTC) To: guile-devel Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri May 09 19:28:43 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WiobC-0006WQ-77 for guile-devel@m.gmane.org; Fri, 09 May 2014 19:28:42 +0200 Original-Received: from localhost ([::1]:53755 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WiobB-0001ai-GN for guile-devel@m.gmane.org; Fri, 09 May 2014 13:28:41 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40346) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wiob2-0001aQ-EY for guile-devel@gnu.org; Fri, 09 May 2014 13:28:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wioaw-00069a-5Y for guile-devel@gnu.org; Fri, 09 May 2014 13:28:32 -0400 Original-Received: from maximusconfessor.all2all.org ([79.99.200.102]:42954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wioav-00069O-VF for guile-devel@gnu.org; Fri, 09 May 2014 13:28:26 -0400 Original-Received: from localhost (unknown [192.168.0.2]) by maximusconfessor.all2all.org (Postfix) with ESMTP id 98375A04C0DE for ; Fri, 9 May 2014 19:28:24 +0200 (CEST) Original-Received: from maximusconfessor.all2all.org ([192.168.0.1]) by localhost (maximusconfessor.all2all.org [192.168.0.2]) (amavisd-new, port 10024) with ESMTP id J-fDf2RrNHg8 for ; Fri, 9 May 2014 19:09:51 +0200 (CEST) Original-Received: from capac (unknown [189.60.2.251]) by maximusconfessor.all2all.org (Postfix) with ESMTPSA id 93E3AA04C0FF for ; Fri, 9 May 2014 19:28:17 +0200 (CEST) X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.23; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 79.99.200.102 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17139 Archived-At: --MP_/NR45EvsXZ2GrhrkDAIY0tfe Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, guile-gnome master: fix unbound variable `&gw:bad-typespec' Patch review solicited. Thanks, David --MP_/NR45EvsXZ2GrhrkDAIY0tfe Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0003-fix-unbound-variable-gw-bad-typespec.patch >From fd5d39e87986fe4fa08c4eddc2e45a98261ae98e Mon Sep 17 00:00:00 2001 From: David PIROTTE Date: Fri, 9 May 2014 14:24:42 -0300 Subject: [PATCH 3/3] fix unbound variable `&gw:bad-typespec' * glib/gnome/gw/glib-spec.scm: Use &gw-bad-typespec, not &gw:bad-typespec. --- glib/gnome/gw/glib-spec.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gnome/gw/glib-spec.scm b/glib/gnome/gw/glib-spec.scm index 6296445..f99fd6a 100644 --- a/glib/gnome/gw/glib-spec.scm +++ b/glib/gnome/gw/glib-spec.scm @@ -375,7 +375,7 @@ (set! remainder (delq 'null-ok remainder)) (if (not (null? remainder)) (raise (condition - (&gw:bad-typespec (type type) (options options))))))) + (&gw-bad-typespec (type type) (options options))))))) (define-method (destroy-value-cg (t ) (value ) -- 2.0.0.rc0 --MP_/NR45EvsXZ2GrhrkDAIY0tfe--