emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Does not byte-compile return the compiled function in Emacs 24?


From: Johan Bockgård
Subject: Re: Does not byte-compile return the compiled function in Emacs 24?
Date: Wed, 07 Dec 2011 23:34:20 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.91 (gnu/linux)

Stefan Monnier <address@hidden> writes:

> 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 ()))   => #[...]
  (byte-compile (lambda () nil))  => #[...]

  (setq lexical-binding t)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]