From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.devel Subject: Re: [Guile-commits] GNU Guile branch, syncase-in-boot-9, updated. 3d5f3091e100550052abc698e980b3e86cc01b65 Date: Thu, 30 Apr 2009 12:30:07 +0200 Message-ID: <87y6ti1ljk.fsf@gnu.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1241087464 12625 80.91.229.12 (30 Apr 2009 10:31:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 30 Apr 2009 10:31:04 +0000 (UTC) Cc: guile-devel@gnu.org To: "Andy Wingo" Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Apr 30 12:30:54 2009 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.50) id 1LzTXE-0008Vw-Je for guile-devel@m.gmane.org; Thu, 30 Apr 2009 12:30:54 +0200 Original-Received: from localhost ([127.0.0.1]:35073 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LzTXD-0004B6-R5 for guile-devel@m.gmane.org; Thu, 30 Apr 2009 06:30:31 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LzTX2-000488-NC for guile-devel@gnu.org; Thu, 30 Apr 2009 06:30:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LzTWx-00046k-Uq for guile-devel@gnu.org; Thu, 30 Apr 2009 06:30:20 -0400 Original-Received: from [199.232.76.173] (port=58133 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LzTWx-00046f-Gf for guile-devel@gnu.org; Thu, 30 Apr 2009 06:30:15 -0400 Original-Received: from mail4-relais-sop.national.inria.fr ([192.134.164.105]:16388) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.60) (envelope-from ) id 1LzTWw-0002vv-EU for guile-devel@gnu.org; Thu, 30 Apr 2009 06:30:14 -0400 X-IronPort-AV: E=Sophos;i="4.40,272,1238968800"; d="scan'208";a="39265595" Original-Received: from reverse-83.fdn.fr (HELO nixey) ([80.67.176.83]) by mail4-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES128-SHA; 30 Apr 2009 12:30:10 +0200 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 11 =?iso-8859-1?Q?Flor=E9al?= an 217 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: i686-pc-linux-gnu In-Reply-To: (Andy Wingo's message of "Wed, 29 Apr 2009 19:24:07 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:8474 Archived-At: Hello! "Andy Wingo" writes: > * libguile/macros.h: Add API for syncase macros. Perhaps these should be made `SCM_INTERNAL'? > +SCM_DEFINE (scm_make_syncase_macro, "make-syncase-macro", 2, 0, 0, > + (SCM type, SCM binding), > + "Return a @dfn{macro} that requires expansion by syntax-case.\n" [...] > +SCM_DEFINE (scm_make_extended_syncase_macro, "make-extended-syncase-macro", 3, 0, 0, > + (SCM m, SCM type, SCM binding), > + "Extend a core macro @var{m} with a syntax-case binding.") Can you explain how it works? Having a SMOB type for `syntax-case' macros seems counter-intuitive to me. :-) Thanks, Ludo'.