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] Make guile-func-name-check ignore a string literal =?utf-8?b?4oCYRlVOQ19OQU1F4oCZLg==?= Date: Mon, 28 Jun 2010 15:46:24 +0200 Message-ID: References: <87y6e3e22d.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1277732649 8508 80.91.229.12 (28 Jun 2010 13:44:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 28 Jun 2010 13:44:09 +0000 (UTC) Cc: guile-devel@gnu.org To: Thien-Thi Nguyen Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jun 28 15:44:07 2010 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 1OTEd4-0006wh-Kr for guile-devel@m.gmane.org; Mon, 28 Jun 2010 15:44:06 +0200 Original-Received: from localhost ([127.0.0.1]:60222 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTEd0-0003MI-Vw for guile-devel@m.gmane.org; Mon, 28 Jun 2010 09:44:03 -0400 Original-Received: from [140.186.70.92] (port=41380 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTEcv-0003M2-9F for guile-devel@gnu.org; Mon, 28 Jun 2010 09:43:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTEcu-0008F0-3i for guile-devel@gnu.org; Mon, 28 Jun 2010 09:43:57 -0400 Original-Received: from a-pb-sasl-quonix.pobox.com ([208.72.237.25]:50996 helo=sasl.smtp.pobox.com) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTEcu-0008Ev-24 for guile-devel@gnu.org; Mon, 28 Jun 2010 09:43:56 -0400 Original-Received: from sasl.smtp.pobox.com (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id CFC45BFAC6; Mon, 28 Jun 2010 09:43:55 -0400 (EDT) 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=erZOmzluoPxlWxDbBncygL+Tht8=; b=tZhQeo KK10+EfwSNz3/rkAwSg01PBlu5/AJADStN2bSsMutf1uvA5c98Ucs61eMb6Yjoge I85kw07ip7GagrURxk4UlPDm/eGK+2u/MSqZygaG2EFNB5eXKyje6KXvJSyDJjKl 5eNCD4yYazZDWeshAmToBH+NIvsCHBYHTu3Ng= 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=IfHca/lDQjOYBzombW7tV1AWZ5eadXV9 JI1oabqRF6p2AninaqeV+DvTqeriIkZamsRtizYWzYz3uPCSbmkdURKz2QtbV2oQ yEuCmNWKyBtnytE6oT56ynMSYkhTnbEXPR8YR/kbo4LzuKAF3gy3ikyn+BD69HVP kKQZKZ3WE7k= Original-Received: from a-pb-sasl-quonix. (unknown [127.0.0.1]) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTP id BB304BFAC5; Mon, 28 Jun 2010 09:43:54 -0400 (EDT) Original-Received: from unquote.localdomain (unknown [83.202.24.141]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-pb-sasl-quonix.pobox.com (Postfix) with ESMTPSA id 46BD9BFAC4; Mon, 28 Jun 2010 09:43:53 -0400 (EDT) In-Reply-To: <87y6e3e22d.fsf@ambire.localdomain> (Thien-Thi Nguyen's message of "Fri, 25 Jun 2010 14:20:26 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Pobox-Relay-ID: 319EE81E-82BB-11DF-876A-9056EE7EF46B-02397024!a-pb-sasl-quonix.pobox.com X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) 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:10580 Archived-At: On Fri 25 Jun 2010 14:20, Thien-Thi Nguyen writes: > This silences the warning for memoize.c. > > Subject: [PATCH 4/8] =?utf-8?q?[maint]=20Make=20guile-func-name-check=20ignore=20a=20string=20literal=20=E2=80=98FUNC=5FNAME=E2=80=99.?= > MIME-Version: 1.0 Great, please push, modulo the indentation comments from the previous mail. Andy -- http://wingolog.org/