unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: "Stuart D. Herring" <herring@lanl.gov>
Cc: emacs-devel@gnu.org
Subject: Re: Macro vs Function
Date: Wed, 12 Apr 2006 08:26:05 -0700 (PDT)	[thread overview]
Message-ID: <40768.128.165.123.132.1144855565.squirrel@webmail.lanl.gov> (raw)
In-Reply-To: <BAY112-F2322238840D7C7632BA494DAC20@phx.gbl>

> The reason why ,(car largs) is not sufficient is that 'apply' requires
> a list as the last argument. While I call 'xgp-casi2-safe-call-iter' with
>
>     (xgp-casi2-safe-call-iter '+ ((1 2 a) (3 4)))
>
> (car largs) is (1 2 a), which it's not a list when evaluating
>
>     (apply '+ (1 2 a))

This much you can solve simply by using ',(car largs).  In general, in a `:

x              "use literally and eval later"
'x             "never eval at all"
,x             "use symbolically and eval later"
(eval x)       "use literally and eval twice later"
,(eval x)      "evaluate now and later"
',(eval x)     "evaluate now only"
',x            "use symbolically and don't eval later"

(...where 'now' is macro expansion time and 'later' is interpretation
time.)  You want the last one, since largs is a macro argument (use
symbolically) but you don't want the resulting list evaluated.  (I hope I
got all those meanings right!)

Davis

-- 
This product is sold by volume, not by mass.  If it appears too dense or
too sparse, it is because mass-energy conversion has occurred during
shipping.

  reply	other threads:[~2006-04-12 15:26 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-12  8:22 Macro vs Function Herbert Euler
2006-04-12  9:07 ` David Kastrup
2006-04-12  9:17   ` Herbert Euler
2006-04-12  9:24     ` David Kastrup
2006-04-12  9:39       ` Herbert Euler
2006-04-12  9:53         ` David Kastrup
2006-04-12 10:39           ` Herbert Euler
2006-04-12 11:14             ` Andreas Schwab
2006-04-12 11:56               ` Herbert Euler
2006-04-12 12:08                 ` Herbert Euler
2006-04-12 12:19                   ` David Kastrup
2006-04-12 13:37                     ` Herbert Euler
2006-04-12 13:52                       ` David Kastrup
2006-04-12 15:13                         ` Herbert Euler
2006-04-12 15:26                           ` Stuart D. Herring [this message]
2006-04-12 15:54                             ` Herbert Euler
2006-04-12 15:29                           ` David Kastrup
2006-04-12 15:56                             ` Herbert Euler
2006-04-12 16:14                               ` Herbert Euler
2006-04-12 16:59                               ` David Kastrup
2006-04-13  2:17                                 ` Herbert Euler
2006-04-12 12:12                 ` David Kastrup
2006-04-12 11:19             ` David Kastrup
  -- strict thread matches above, loose matches on Subject: below --
2006-04-12 12:05 Herbert Euler
2006-04-12 12:13 ` David Kastrup
2006-04-12 12:17   ` Herbert Euler

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=40768.128.165.123.132.1144855565.squirrel@webmail.lanl.gov \
    --to=herring@lanl.gov \
    --cc=emacs-devel@gnu.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.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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).