From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] guile-snarf: allow multiple init actions on one line Date: Fri, 04 Mar 2011 11:34:49 +0100 Message-ID: References: <87k4grq3tn.fsf@olor.terpri.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1299238130 23393 80.91.229.12 (4 Mar 2011 11:28:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 4 Mar 2011 11:28:50 +0000 (UTC) Cc: guile-devel@gnu.org To: BT Templeton Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Mar 04 12:28:46 2011 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PvTBd-0001Yl-5l for guile-devel@m.gmane.org; Fri, 04 Mar 2011 12:28:45 +0100 Original-Received: from localhost ([127.0.0.1]:42489 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PvTBc-0002JR-KC for guile-devel@m.gmane.org; Fri, 04 Mar 2011 06:28:44 -0500 Original-Received: from [140.186.70.92] (port=40168 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PvTBI-00029j-FO for guile-devel@gnu.org; Fri, 04 Mar 2011 06:28:25 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PvTBH-00010O-J6 for guile-devel@gnu.org; Fri, 04 Mar 2011 06:28:24 -0500 Original-Received: from a-pb-sasl-sd.pobox.com ([64.74.157.62]:48271 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PvTBH-00010H-Gt for guile-devel@gnu.org; Fri, 04 Mar 2011 06:28:23 -0500 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id A6B763684; Fri, 4 Mar 2011 06:29:44 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=M4cois/Y6WvQhVaNvngzknIEU3M=; b=OGdBCf it2qyasdx8TAmXFpfLY86nDVYf6X5odIPry/cnkr4XuxLVr+mi2j7N9bUpOQsYAb sdfCO803Rb4lWYU/+ZiOWlAqiFwrEU1J9b2AzVIaShilLDW2c2i96B6+kL38e/Vs Z+f69IyJJsjJtc769T29BjSLTifbB6gm3vAfs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=aaygynBlzIGh+yuZVL/SCnKOZjz4IA5+ 80d7c4DP3ImnRDGHXvK+O96jvZ5PFR4KsFfrqR6L/kNnFcl4iDUL/QoltQ6qvSSa vd+uot5eyKxtISTywtZSkxP6fqqZ9OCI3WhepsE1aGOxsW9+sCwz8hdjtUIHkvRT cQM9ZmLRDqI= Original-Received: from a-pb-sasl-sd.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTP id 94AC93683; Fri, 4 Mar 2011 06:29:43 -0500 (EST) Original-Received: from unquote.localdomain (unknown [90.164.198.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-sd.pobox.com (Postfix) with ESMTPSA id EB3CE367F; Fri, 4 Mar 2011 06:29:41 -0500 (EST) In-Reply-To: <87k4grq3tn.fsf@olor.terpri.org> (BT Templeton's message of "Tue, 22 Feb 2011 14:14:44 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Pobox-Relay-ID: B39BD2FE-4652-11E0-8CBD-AF401E47CF6F-02397024!a-pb-sasl-sd.pobox.com X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Received-From: 64.74.157.62 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11768 Archived-At: On Tue 22 Feb 2011 20:14, BT Templeton writes: > Guile-SDL contains some cpp macros that define multiple subrs. To allow > that, this patch modifies guile-snarf to recognize more than one > initialization action per line, which is necessary because GNU's C > preprocessor removes newlines from macro expansions. Applied, with your tests, and some shell portability foo. Thanks! Andy -- http://wingolog.org/