We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
emacs 27+ emits the message that "package cl is deprecated" upon loading packages that call it.
(require 'loadhist) (file-dependents (feature-file 'cl))
This code lists jdee-maven.el as one such file.
in jdee-maven.el, (require 'cl) should be changed to (require 'cl-lib)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
emacs 27+ emits the message that "package cl is deprecated" upon loading packages that call it.
(require 'loadhist)
(file-dependents (feature-file 'cl))
This code lists jdee-maven.el as one such file.
My Emacs version: 27.1
My JDEE version (elpa package date): jdee-20191102.1426
My JDK version: java version "14.0.1" 2020-04-14
My Operating System (Linux/OSX/Windows X/Other): Windows 10
Stacktrace (if applicable):
How to reproduce (if applicable):
Other info you consider could help to fix it:
in jdee-maven.el,
(require 'cl)
should be changed to (require 'cl-lib)
The text was updated successfully, but these errors were encountered: