Skip to content

Commit

Permalink
Fix completion w other keys than quick key
Browse files Browse the repository at this point in the history
  • Loading branch information
codesensei-courses authored and djcb committed Oct 19, 2023
1 parent bcd3e48 commit 4513031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu4e/mu4e-helpers.el
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Return the matching choice value (cdr of the cell)."
;; Require confirmation, if the input does not match a suggestion
nil t nil nil nil))))
(or quick-result
(cdr (assoc result choices)))))
(cdadr (assoc result choices)))))

(defun mu4e--read-choice-builtin (prompt choices)
"Read and return one of CHOICES, prompting for PROMPT.
Expand Down

0 comments on commit 4513031

Please sign in to comment.