diff options
author | Thanos Apollo <[email protected]> | 2024-05-29 17:34:46 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-29 17:34:46 +0300 |
commit | 7bd22e9bd9e2ffdbf05bbefb9384f42305916f62 (patch) | |
tree | afae3853ebb18009b336be357c094ac31c99b9dc /gnosis.el | |
parent | 281ad1dbc903b48f250afb14d86cf81961a8a2f1 (diff) |
[fix] Use funcall for completing-read-func
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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." |