[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/jinx 69a7233876 2/2: Use hashed symbols
From: |
ELPA Syncer |
Subject: |
[elpa] externals/jinx 69a7233876 2/2: Use hashed symbols |
Date: |
Thu, 14 Dec 2023 15:58:11 -0500 (EST) |
branch: externals/jinx
commit 69a7233876350708cef4e3c68d22c68559bca33b
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
Use hashed symbols
---
jinx.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/jinx.el b/jinx.el
index 5fed32fc3f..354d3bf37a 100644
--- a/jinx.el
+++ b/jinx.el
@@ -740,12 +740,12 @@ The word will be associated with GROUP and get a prefix
key."
"Completion table for SUGGESTIONS."
(lambda (str pred action)
(if (eq action 'metadata)
- '(metadata (display-sort-function . identity)
- (cycle-sort-function . identity)
- (category . jinx)
- (group-function . jinx--correct-group)
- (affixation-function . jinx--correct-affixation)
- (annotation-function . jinx--correct-annotation))
+ `(metadata (category . jinx)
+ (display-sort-function . ,#'identity)
+ (cycle-sort-function . ,#'identity)
+ (group-function . ,#'jinx--correct-group)
+ (affixation-function . ,#'jinx--correct-affixation)
+ (annotation-function . ,#'jinx--correct-annotation))
(complete-with-action action suggestions str pred))))
(cl-defun jinx--correct-overlay (overlay &key info initial)