emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/setup 26b553fa44 5/5: Fix broken keyword :with-feature


From: ELPA Syncer
Subject: [elpa] externals/setup 26b553fa44 5/5: Fix broken keyword :with-feature
Date: Thu, 2 Mar 2023 07:58:39 -0500 (EST)

branch: externals/setup
commit 26b553fa44ee9e1271c7ebe619c792f1269506dc
Author: Hilde <hilde.rhyne@disroot.org>
Commit: Philip Kaludercic <philipk@posteo.net>

    Fix broken keyword :with-feature
    
    Fix typo in :with-feature definition, as per
    https://lists.sr.ht/~pkal/public-inbox/%3Cm0edq8dqj7.fsf%40disroot.org%3E
---
 setup.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.el b/setup.el
index 1177fae43c..59b6309d79 100644
--- a/setup.el
+++ b/setup.el
@@ -451,12 +451,12 @@ VAL into one s-expression."
                                 (intern (format "%s-mode" feature)))))
                     (setup-bind body
                       (feature feature)
-                      (mode (or (get features 'setup-mode) mode))
-                      (func (or (get features 'setup-func) mode))
-                      (hook (or (get features 'setup-hook)
+                      (mode (or (get feature 'setup-mode) mode))
+                      (func (or (get feature 'setup-func) mode))
+                      (hook (or (get feature 'setup-hook)
                                 (get mode 'setup-hook)
                                 (intern (format "%s-hook" mode))))
-                      (map (or (get features 'setup-map)
+                      (map (or (get feature 'setup-map)
                                (get mode 'setup-map)
                                (intern (format "%s-map" mode))))))
                 body)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]