unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@IRO.UMontreal.CA>
To: emacs-devel@gnu.org
Subject: Re: Does not byte-compile return the compiled function in Emacs 24?
Date: Thu, 08 Dec 2011 09:56:27 -0500	[thread overview]
Message-ID: <jwvwra7unii.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <8762hs2eqb.fsf@gnu.org> ("Johan Bockgård"'s message of "Wed, 07 Dec 2011 23:34:20 +0100")

>> Don't know.  `byte-compile' does various things in various circumstances
>> (it's pretty DWIMish), so without more details I can't help you.

> What about this?

>   (byte-compile (defun foo ()))   => #[...]

This is really:

   (defun foo ())
   (byte-compile 'foo)

>   (byte-compile (lambda () nil))  => #[...]

This happens to be the same as

   (byte-compile '(lambda () nil))

which is the preferred form to call it.
   
>   (setq lexical-binding t)
>   (byte-compile (defun foo ()))   => nil

Indeed, this is not supported currently: (symbol-function 'foo) is
a closure rather than a lambda expression, and byte-compile doesn't know
how to compile a closure.

>   (byte-compile (lambda () nil))  => nil

This fails because you're passing it a closure rather than
a lambda-expression (i.e. same problem as for `defun' above).

This works: (byte-compile '(lambda () nil))


        Stefan



      reply	other threads:[~2011-12-08 14:56 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-07  0:38 Does not byte-compile return the compiled function in Emacs 24? Lennart Borgman
2011-12-07  0:51 ` Juanma Barranquero
2011-12-07  4:24   ` Kevin Rodgers
2011-12-07  4:38     ` Lennart Borgman
2011-12-07  4:53       ` Kevin Rodgers
2011-12-07  1:36 ` Stefan Monnier
2011-12-07  1:54   ` Lennart Borgman
2011-12-07  9:12     ` Andreas Schwab
2011-12-07 15:12     ` Stefan Monnier
2011-12-07 16:34       ` Lennart Borgman
2011-12-09  2:12         ` Lennart Borgman
2011-12-09  2:57           ` Stefan Monnier
2011-12-07 22:34   ` Johan Bockgård
2011-12-08 14:56     ` Stefan Monnier [this message]

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=jwvwra7unii.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --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).