]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/so-long.el: Backwards-compatibility fix for Emacs < 27
authorPhil Sainty <psainty@orcon.net.nz>
Thu, 9 Jan 2025 08:21:55 +0000 (21:21 +1300)
committerEshel Yaron <me@eshelyaron.com>
Sat, 15 Mar 2025 17:14:38 +0000 (18:14 +0100)
We support Emacs 24.4 and later (for ELPA releases), and ad-find-advice
only changed from a macro to a function in Emacs 27, so this change is
to restore compatibility with older versions where we do need the macro
definition loaded at byte-compilation time.

This effectively combines the related changes from:

- commit 986c12b20fa29c37f13563846fddf6edcd0b4945
- commit c221db0402031c23b983eea3a6bc129e5abb98f6

(cherry picked from commit 03a6d5a76331e814368f17a61718208242e44bee)

lisp/so-long.el

index 1291ba0babaa28fe8c46ab7330e53ab3149d531c..8ac4ff87a940383a520cdd7ce52ee652f3ac0556 100644 (file)
@@ -1994,7 +1994,10 @@ If it appears in `%s', you should remove it."
   ;; Update to version 1.0 from earlier versions:
   (when (version< so-long-version "1.0")
     (remove-hook 'change-major-mode-hook 'so-long-change-major-mode)
-    (require 'advice) ;; It should already be loaded, but just in case.
+    (require 'advice)
+    ;; `ad-find-advice' is a macro in Emacs 26 and earlier.
+    (eval-when-compile (when (< emacs-major-version 27)
+                         (require 'advice)))
     (declare-function ad-find-advice "advice")
     (declare-function ad-remove-advice "advice")
     (declare-function ad-activate "advice")