unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: David Kastrup <dak@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Macro vs Function
Date: Wed, 12 Apr 2006 17:29:40 +0200	[thread overview]
Message-ID: <85y7ya24nv.fsf@lola.goethe.zz> (raw)
In-Reply-To: <BAY112-F2322238840D7C7632BA494DAC20@phx.gbl> (Herbert Euler's message of "Wed, 12 Apr 2006 23:13:53 +0800")

"Herbert Euler" <herberteuler@hotmail.com> writes:

> What I'm trying to do can be found at
>
>    http://lists.gnu.org/archive/html/help-gnu-emacs/2006-04/msg00185.html
>
> 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))
>
> (I've modified xgp-casi2-safe-call but it's not accessible now.  I'll
> post it when
> it's accessible.)

Why are you bothering with "apply" in the first place?  It does not
look like you have any need for it.  Just write

(defmacro xgp-casi2-safe-call-iter (func largs)
 (and largs
     `(condition-case nil
	   (,func ,@(car largs))
	 (error (xgp-casi2-safe-call-iter ,func ,(cdr largs))))))

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

  parent reply	other threads:[~2006-04-12 15:29 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
2006-04-12 15:54                             ` Herbert Euler
2006-04-12 15:29                           ` David Kastrup [this message]
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=85y7ya24nv.fsf@lola.goethe.zz \
    --to=dak@gnu.org \
    --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).