Open ErnestDong opened 3 years ago
cl-lib was published many years ago as a better alternative to cl. And in Emacs-27 cl now has a deprecation warning. Replace (require 'cl) with (require cl-lib) will fix it.
(require 'cl)
(require cl-lib)
cl-lib was published many years ago as a better alternative to cl. And in Emacs-27 cl now has a deprecation warning. Replace
(require 'cl)
with(require cl-lib)
will fix it.