From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Pirotte Newsgroups: gmane.lisp.guile.gtk,gmane.lisp.guile.user Subject: Re: [PATCH]: gobject: also loop args after #:gsignal. Fixes multiple signals per class. Date: Thu, 4 Apr 2013 13:54:49 -0300 Message-ID: <20130404135449.508bb261@capac> References: <878v4yu0nu.fsf@nlvehvbe01nb29b.ddns.nl-htc01.nxp.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1365094542 15881 80.91.229.3 (4 Apr 2013 16:55:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 4 Apr 2013 16:55:42 +0000 (UTC) Cc: guile-user , guile-gtk-general To: Jan Nieuwenhuizen Original-X-From: guile-gtk-general-bounces+glgg-guile-gtk-general=m.gmane.org@gnu.org Thu Apr 04 18:56:10 2013 Return-path: Envelope-to: glgg-guile-gtk-general@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 1UNnSL-0007ec-Pu for glgg-guile-gtk-general@m.gmane.org; Thu, 04 Apr 2013 18:56:09 +0200 Original-Received: from localhost ([::1]:50930 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNnRw-00046K-TC for glgg-guile-gtk-general@m.gmane.org; Thu, 04 Apr 2013 12:55:44 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:33367) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNnRq-000469-KI for guile-gtk-general@gnu.org; Thu, 04 Apr 2013 12:55:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UNnRl-0001lN-SH for guile-gtk-general@gnu.org; Thu, 04 Apr 2013 12:55:38 -0400 Original-Received: from maximusconfessor.all2all.org ([62.58.108.13]:44955) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UNnRl-0001g8-IM; Thu, 04 Apr 2013 12:55:33 -0400 Original-Received: from localhost (unknown [192.168.0.2]) by maximusconfessor.all2all.org (Postfix) with ESMTP id 03396A04C0B3; Thu, 4 Apr 2013 18:55:10 +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 Rts98MVgkSg1; Thu, 4 Apr 2013 18:23:36 +0200 (CEST) Original-Received: from capac (unknown [139.82.89.157]) by maximusconfessor.all2all.org (Postfix) with ESMTPSA id 5C51FA04C052; Thu, 4 Apr 2013 18:54:57 +0200 (CEST) In-Reply-To: <878v4yu0nu.fsf@nlvehvbe01nb29b.ddns.nl-htc01.nxp.com> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.10; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 62.58.108.13 X-BeenThere: guile-gtk-general@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General discussions about guile-gtk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-gtk-general-bounces+glgg-guile-gtk-general=m.gmane.org@gnu.org Original-Sender: guile-gtk-general-bounces+glgg-guile-gtk-general=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.gtk:1053 gmane.lisp.guile.user:10233 Archived-At: Hello Jan, > - (if (not (null? args)) > + (when (not (null? args)) I did not 'check' your patch, but reading it very quickly I have a 2c suggestion :) (unless (null? args) ... Cheers, David