unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#53014: 27.2; `cl-macs.el' no longer provides `cl-macs'
@ 2022-01-04 21:14 Drew Adams
  2022-01-05  1:28 ` Glenn Morris
  0 siblings, 1 reply; 2+ messages in thread
From: Drew Adams @ 2022-01-04 21:14 UTC (permalink / raw)
  To: 53014

Presumably a design bug, i.e., intentional.

Until Emacs 27, code could use this to load the macros defining things
like `cl-case' (which has  l o n g  been aliased to `case', and which
should even be in Emacs Lisp itself, as is `push'):

(eval-when-compile (require 'cl-macs))

Emacs 27 breaks that.  Now, if you need only CL macros, you need to
require `cl-lib.el' instead.  So any library that needs something like
`case', and needs to support both Emacs 27+ and older Emacs versions,
needs to jump through a hoop such as this (or another, using
`load-library'):

(eval-when-compile 
  (require (if (< emacs-major-version 27) 'cl-macs 'cl-lib)))

Gratuitous bother.  Or was there some real need for introducing the
incompatibility?

In GNU Emacs 27.2 (build 1, x86_64-w64-mingw32)
 of 2021-03-26 built on CIRROCUMULUS
Repository revision: deef5efafb70f4b171265b896505b92b6eef24e6
Repository branch: HEAD
Windowing system distributor 'Microsoft Corp.', version 10.0.19042
System Description: Microsoft Windows 10 Pro (v10.0.2009.19042.1348)






^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#53014: 27.2; `cl-macs.el' no longer provides `cl-macs'
  2022-01-04 21:14 bug#53014: 27.2; `cl-macs.el' no longer provides `cl-macs' Drew Adams
@ 2022-01-05  1:28 ` Glenn Morris
  0 siblings, 0 replies; 2+ messages in thread
From: Glenn Morris @ 2022-01-05  1:28 UTC (permalink / raw)
  To: 53014-done


There are several misconceptions in this report.

cl-macs.el continues to provide cl-macs, as it always has done.

Loading internal sub-components of cl-lib has always been discouraged.

The way to use cl-lib continues to be to (require 'cl-lib).
Code needing only macros can add eval-when-compile to that.
This is documented in the usage node of the cl manual.

(This was explained 6 years ago in bug#22291.)





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-05  1:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 21:14 bug#53014: 27.2; `cl-macs.el' no longer provides `cl-macs' Drew Adams
2022-01-05  1:28 ` Glenn Morris

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).