summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-05-29 17:34:46 +0300
committerThanos Apollo <[email protected]>2024-05-29 17:34:46 +0300
commit7bd22e9bd9e2ffdbf05bbefb9384f42305916f62 (patch)
treeafae3853ebb18009b336be357c094ac31c99b9dc /gnosis.el
parent281ad1dbc903b48f250afb14d86cf81961a8a2f1 (diff)
[fix] Use funcall for completing-read-func
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnosis.el b/gnosis.el
index 5480a4d..6a10b1e 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -288,7 +288,7 @@ Example:
PROMPT: Prompt for `gnosis-completing-read-function'
History is disabled."
(let ((history-add-new-input nil))
- (gnosis-completing-read prompt (gnosis-shuffle seq))))
+ (funcall gnosis-completing-read-function prompt (gnosis-shuffle seq))))
(defun gnosis-replace-item-at-index (index new-item list)
"Replace item at INDEX in LIST with NEW-ITEM."