Skip to content

Commit 9fbdb36

Browse files
committed
Fix compatibility with Emacs 29.1
In Emacs > 29.0.50, `eieio-compat` must be required in order to use the deprecated `defmethod`.
1 parent c021a3b commit 9fbdb36

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

helm-recoll.el

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@
8484
(require 'helm)
8585
(require 'helm-for-files)
8686

87+
(when (version<= emacs-version "29.0.50")
88+
(require 'eieio-compat))
89+
8790
(defvar helm-find-files-actions)
8891
(defvar helm-find-files-map)
8992
(defvar helm-ff-help-message)

0 commit comments

Comments
 (0)