From 4392d4e308f68195b3de5b7133b38223edc1c3e1 Mon Sep 17 00:00:00 2001 From: reindert Date: Wed, 18 Oct 2023 16:25:52 +0200 Subject: [PATCH] Fix completion w other keys than quick key --- mu4e/mu4e-helpers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-helpers.el b/mu4e/mu4e-helpers.el index af08ae4c..28288d90 100644 --- a/mu4e/mu4e-helpers.el +++ b/mu4e/mu4e-helpers.el @@ -242,7 +242,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.