unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: phillip.lord@russet.org.uk (Phillip Lord)
To: Marcin Borkowski <mbork@mbork.pl>
Cc: help-gnu-emacs@gnu.org
Subject: Re: macro-replacement with quotes
Date: Mon, 25 Jan 2016 10:17:26 +0000	[thread overview]
Message-ID: <87zivut13d.fsf@russet.org.uk> (raw)
In-Reply-To: <87d1sqd36h.fsf@mbork.pl> (Marcin Borkowski's message of "Sun, 24 Jan 2016 23:26:46 +0100")

Marcin Borkowski <mbork@mbork.pl> writes:

> On 2016-01-24, at 22:56, Phillip Lord <phillip.lord@russet.org.uk> wrote:
>
>> Is it possible to build a list within a macro which contains backquote,
>> quote or comma symbols in it?
>>
>> Specifically, I was thinking of building a macro which expands to a
>> pcase form, but I need the ` symbol in the expansion.
>
> I'm not sure whether this would help (I know next to nothing about
> pcase), but would \` and \, suffice for you?
>
> If I do M-: (read) and type `(a ,b), I get (\` (a (\, b))), which seems
> to be equivalent to `(a ,b) in terms of `eval'.  Dunno about pcase,
> though.
>
>> Phil
>
> Best,


Hmm, yes, you are right. I didn't realise that (\` x) was equivalent to
`x, but this works...

(pcase 10
  ((\` (\, a)) a))

And this...

(defun quote-and-comma-arg (def)
  (list '\` (list (list '\, (car def)))))

(defmacro p-test (def)
  `(pcase 10
     (,(quote-and-comma-arg def)
      ,(car def))))

(p-test (a))

expands to

(pcase 10
  (`(,a)
   a))

which returns "10".

The joy of lisp!



  reply	other threads:[~2016-01-25 10:17 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-24 21:56 macro-replacement with quotes Phillip Lord
2016-01-24 22:26 ` Marcin Borkowski
2016-01-25 10:17   ` Phillip Lord [this message]
2016-01-25 11:10     ` Marcin Borkowski
2016-01-25 14:02       ` Phillip Lord
2016-01-25 14:35         ` Michael Heerdegen
     [not found] <mailman.2870.1453672579.843.help-gnu-emacs@gnu.org>
2016-01-24 22:45 ` Joost Kremers
2016-01-24 22:50 ` Pascal J. Bourguignon
2016-01-24 22:54   ` Pascal J. Bourguignon
2016-01-24 23:08   ` Joost Kremers
2016-01-25 19:52     ` Pascal J. Bourguignon

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=87zivut13d.fsf@russet.org.uk \
    --to=phillip.lord@russet.org.uk \
    --cc=help-gnu-emacs@gnu.org \
    --cc=mbork@mbork.pl \
    /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).