mu4e: fix compiler warnings

This commit is contained in:
Dirk-Jan C. Binnema
2025-05-21 20:18:13 +03:00
parent acef5b2381
commit ef71b5372f
2 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ shortcut (e.g., \"/archive\").
Example: Example:
(setq mu4e-maildir-shortcuts (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 \"/drafts\" :key ?d :hide t)
(:maildir \"/sent\" :key ?s :hide-unread t))) (:maildir \"/sent\" :key ?s :hide-unread t)))

View File

@ -1038,10 +1038,10 @@ you cannot sort by this field.
If THREADS is non-nil, give a more informative error message." If THREADS is non-nil, give a more informative error message."
(if (not sortable) (if (not sortable)
(if threads (if threads
(lambda (&optional e) (lambda (&optional _e)
(interactive "e") (interactive "e")
(mu4e-message "With threading, you can only sort by date")) (mu4e-message "With threading, you can only sort by date"))
(lambda (&optional e) (lambda (&optional _e)
(interactive "e") (interactive "e")
(mu4e-message "Field is not sortable"))) (mu4e-message "Field is not sortable")))
(lambda (&optional e) (lambda (&optional e)