From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by sourceware.org (Postfix) with ESMTPS id A882938708D6 for ; Wed, 15 Jul 2020 18:06:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A882938708D6 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=lassi.io Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=lassi@lassi.io X-Originating-IP: 82.181.134.218 Received: from sunshower.local (82-181-134-218.bb.dnainternet.fi [82.181.134.218]) (Authenticated sender: lassi@lassi.io) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 2D7B1E0002 for ; Wed, 15 Jul 2020 18:06:42 +0000 (UTC) To: kawa mailing list From: Lassi Kortela Subject: Identifier syntax in Kawa Message-ID: <0dd9c3bc-e111-613d-437e-9bc57c0a3ee0@lassi.io> Date: Wed, 15 Jul 2020 21:06:41 +0300 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: kawa@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Kawa mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Jul 2020 18:06:46 -0000 Kawa's syntax-case interpretats bare identifiers is differently from the R6RS standard and its implementations. Is this intentional: (define-syntax foo (lambda (x) (syntax-case x () ((_) (syntax '(1 2 3))) (_ (syntax 123))))) (foo) => (1 2 3) ; in both R6RS and Kawa foo => 123 ; in R6RS foo => # ; in Kawa