bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#31792: 27.0.50; Regression in #'labels, recent versions


From: Noam Postavsky
Subject: bug#31792: 27.0.50; Regression in #'labels, recent versions
Date: Mon, 11 Jun 2018 19:31:39 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

found 31792 25.3
quit

Aidan Kehoe <kehoea@parhasard.net> writes:

> When I do the same in the emacs 22.1.1 that Apple built and shipped with
> my OS, I get a compiled function object, as is much closer to being the
> correct behaviour.

Seems to have regressed in Emacs 25, cl-labels still works correctly.
Here's a smaller reproducer:

(labels ((foo () t))
  #'foo) ;=> foo

(cl-labels ((foo () t))
  #'foo) ;=> (lambda nil t)





reply via email to

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