From 378d086fc9b6f8bb63782eb3e9a7923108a69fc6 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 28 Apr 2012 20:51:09 +0300 Subject: [PATCH] * fix mu4e~read-option-normalize-list for options with only a title --- emacs/mu4e-utils.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs/mu4e-utils.el b/emacs/mu4e-utils.el index e78d880b..132ee330 100644 --- a/emacs/mu4e-utils.el +++ b/emacs/mu4e-utils.el @@ -58,7 +58,8 @@ dir already existed, or has been created, nil otherwise." (list (substring (nth 0 option) 1) ;; chop off first char (string-to-char (nth 0 option)) ;; first char as shortcut - (or (nth 2 option) (nth 1 option))))) + (or (nth 2 option) (nth 1 option) + (string-to-char (nth 0 option)))))) options))