public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
From: Lassi Kortela <lassi@lassi.io>
To: kawa mailing list <kawa@sourceware.org>
Subject: Identifier syntax in Kawa
Date: Wed, 15 Jul 2020 21:06:41 +0300	[thread overview]
Message-ID: <0dd9c3bc-e111-613d-437e-9bc57c0a3ee0@lassi.io> (raw)

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   => #<macro foo>  ; in Kawa

                 reply	other threads:[~2020-07-15 18:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0dd9c3bc-e111-613d-437e-9bc57c0a3ee0@lassi.io \
    --to=lassi@lassi.io \
    --cc=kawa@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).