From ef71b5372f444777d40fcf6a5418c757755b1276 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 21 May 2025 20:18:13 +0300 Subject: [PATCH] mu4e: fix compiler warnings --- mu4e/mu4e-folders.el | 2 +- mu4e/mu4e-headers.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mu4e/mu4e-folders.el b/mu4e/mu4e-folders.el index 1fc14b1c..30501324 100644 --- a/mu4e/mu4e-folders.el +++ b/mu4e/mu4e-folders.el @@ -115,7 +115,7 @@ shortcut (e.g., \"/archive\"). Example: (setq mu4e-maildir-shortcuts - '((:maildir \"/inbox\" :key ?i :hide-if-no-unread t) + \='((:maildir \"/inbox\" :key ?i :hide-if-no-unread t) (:maildir \"/drafts\" :key ?d :hide t) (:maildir \"/sent\" :key ?s :hide-unread t))) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index d6d9b2db..bc63c85a 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -1038,10 +1038,10 @@ you cannot sort by this field. If THREADS is non-nil, give a more informative error message." (if (not sortable) (if threads - (lambda (&optional e) + (lambda (&optional _e) (interactive "e") (mu4e-message "With threading, you can only sort by date")) - (lambda (&optional e) + (lambda (&optional _e) (interactive "e") (mu4e-message "Field is not sortable"))) (lambda (&optional e)