winterTTr / ace-jump-mode

a quick cursor jump mode for emacs
https://github.com/winterTTr/ace-jump-mode/wiki
609 stars 72 forks source link

fix "Package cl is deprecated" warning #101

Open ErnestDong opened 3 years ago

ErnestDong commented 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.