abo-abo / lispy

Short and sweet LISP editing
http://oremacs.com/lispy/
1.19k stars 129 forks source link

Fix warning on Emacs 30 related to deprecated (defadvice) macro #677

Open Dima-369 opened 5 months ago

Dima-369 commented 5 months ago
../lispy-20230314.1738/lispy.el: Warning: ‘defadvice’ is an obsolete macro (as of 30.1); use ‘advice-add’ or ‘define-advice’

From this code:

(defadvice ac-handle-post-command (around ac-post-command-advice activate)
  "Don't `auto-complete' when region is active."
  (unless (region-active-p)
    ad-do-it))