all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Michael Heerdegen <michael_heerdegen@web.de>
To: help-gnu-emacs@gnu.org
Subject: Re: About `funcall'
Date: Mon, 04 Mar 2013 15:11:47 +0100	[thread overview]
Message-ID: <87r4jvl0f0.fsf@web.de> (raw)
In-Reply-To: <mailman.21340.1362401871.855.help-gnu-emacs@gnu.org> (Xue Fuqiao's message of "Mon, 04 Mar 2013 20:57:30 +0800")

Xue Fuqiao <xfq.free@gmail.com> writes:

> On 03/04/2013 08:52 PM, Xue Fuqiao wrote:
> > In `yank-pop', there is an sexp about `funcall':
> >
> >    (funcall (or yank-undo-function 'delete-region) (point) (mark t))
> >
> > IIRC the first argument for `funcall' should be a function, so I'm
> > confused with this usage.  Can somebody explain it to me?  Thanks.
>
> Maybe the first argument is whatever the `or' expression
> returns, so the remaining arguments are passed to it?

Exactly.  Note that `funcall' is a _function_, so it evaluates all
arguments first.  The first argument should evaluate to a function,
which is then called with the remaining arguments.

This is useful, because unlike in scheme, this:

  ((or yank-undo-function 'delete-region) (point) (mark t))

won't work in Emacs Lisp.

Note that `apply' behaves analogously, because it's also a function.


Regards,

Michael.



  parent reply	other threads:[~2013-03-04 14:11 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-04 12:52 About `funcall' Xue Fuqiao
2013-03-04 12:57 ` Xue Fuqiao
     [not found] ` <mailman.21340.1362401871.855.help-gnu-emacs@gnu.org>
2013-03-04 14:11   ` Michael Heerdegen [this message]
     [not found] <mailman.21339.1362401601.855.help-gnu-emacs@gnu.org>
2013-03-04 19:12 ` Raffaele Ricciardi
2013-03-04 19:15 ` Pascal J. Bourguignon
  -- strict thread matches above, loose matches on Subject: below --
2013-03-04 22:59 Xue Fuqiao
     [not found] <mailman.21404.1362437985.855.help-gnu-emacs@gnu.org>
2013-03-04 23:23 ` 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

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

  git send-email \
    --in-reply-to=87r4jvl0f0.fsf@web.de \
    --to=michael_heerdegen@web.de \
    --cc=help-gnu-emacs@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.