Closed jcs090218 closed 4 years ago
Emacs version above 27.1 you won't need to do (package-initialize) like the code snippet below.
27.1
(package-initialize)
(when (version< "27.1" emacs-version) (package-initialize))
But this cause the error for esup. Yet if I just called (package-initialize), then everything work fine.
esup
You can use something like this
(when (or (version< emacs-version "27.0") (featurep 'esup-child)) (package-initialize))
This resolved my issue! Thanks! Close this now.
Emacs version above
27.1
you won't need to do(package-initialize)
like the code snippet below.But this cause the error for
esup
. Yet if I just called(package-initialize)
, then everything work fine.