[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/embark 58c33508a7 1/2: Silence byte-compiler
From: |
ELPA Syncer |
Subject: |
[elpa] externals/embark 58c33508a7 1/2: Silence byte-compiler |
Date: |
Wed, 3 May 2023 06:58:07 -0400 (EDT) |
branch: externals/embark
commit 58c33508a76756739f7a63b522837277eff1e721
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
Silence byte-compiler
Warning: ‘assq’ called with literal list that may never match
---
embark-consult.el | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/embark-consult.el b/embark-consult.el
index 08c00dbbeb..704826c08a 100644
--- a/embark-consult.el
+++ b/embark-consult.el
@@ -260,10 +260,12 @@ This function is meant to be added to
`embark-collect-mode-hook'."
;;; Support for consult-find and consult-locate
-(setf (alist-get '(file . consult-find) embark-default-action-overrides)
+(setf (alist-get '(file . consult-find) embark-default-action-overrides
+ nil nil #'equal)
#'find-file)
-(setf (alist-get '(file . consult-locate) embark-default-action-overrides)
+(setf (alist-get '(file . consult-locate) embark-default-action-overrides
+ nil nil #'equal)
#'find-file)
;;; Support for consult-isearch-history
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/embark 58c33508a7 1/2: Silence byte-compiler,
ELPA Syncer <=