[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] emacs-25 526d80c: Port chart.el methods to cl-generic.
From: |
Stefan Monnier |
Subject: |
Re: [Emacs-diffs] emacs-25 526d80c: Port chart.el methods to cl-generic. |
Date: |
Sat, 02 Jan 2016 13:10:29 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) |
> Lots of libraries in Emacs using generics leave out the require. What do
> you think I should do?
For bundled packages, cl-generic is preloaded, so the `require' is
unneeded tho harmless. For unbundled packages relying on the
cl-generic.el compatibility library (distributed via GNU ELPA), both the
macros and the functions are supposedly all autoloaded, so again the
require should be unneeded tho harmless.
If the cl-generic.el compatibility library is installed by hand it's likely
that the autoloads aren't properly setup, in which case the `require'
would be needed, both at compile-time and at run-time.
Stefan