From b4ebd6c24816ac19dd0af68e54d8016bf3e6121f Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 31 Jul 2021 01:49:23 +0300 Subject: [PATCH] mu4e-utils: make schema warning/error a bit clearer Show in the warning buffer. --- mu4e/mu4e-utils.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mu4e/mu4e-utils.el b/mu4e/mu4e-utils.el index 8b08ae05..9ab2fb39 100644 --- a/mu4e/mu4e-utils.el +++ b/mu4e/mu4e-utils.el @@ -664,6 +664,7 @@ process." ;; don't use mu4e-error here; it's running in the process filter context (cl-case errcode (4 (user-error "No matches for this search query.")) + (110 (display-warning 'mu4e errmsg :error)) ;; schema version. (t (error "Error %d: %s" errcode errmsg))))