diff --git a/emacs/mu4e-hdrs.el b/emacs/mu4e-hdrs.el index e4b5a87a..60f7d35d 100644 --- a/emacs/mu4e-hdrs.el +++ b/emacs/mu4e-hdrs.el @@ -732,7 +732,7 @@ current window. " (bury-buffer) (delete-windows-on buf) ;; destroy all windows for this buffer (kill-buffer buf))) - (mu4e-main-view))) + (mu4e~main-view))) (defun mu4e-rerun-search () diff --git a/emacs/mu4e-vars.el b/emacs/mu4e-vars.el index 5697abba..0e7bab4a 100644 --- a/emacs/mu4e-vars.el +++ b/emacs/mu4e-vars.el @@ -286,11 +286,12 @@ headers)." (:path . "Path") (:subject . "Subject") (:to . "To")) -"A alist of all possible header fields; this is used in the UI (the +"An alist of all possible header fields; this is used in the UI (the column headers in the header list, and the fields the message view). Most fields should be self-explanatory. A special one is -`:from-or-to', which is equal to `:from' unless `:from' matches , -in which case it will be equal to `:to'.)") +`:from-or-to', which is equal to `:from' unless `:from' matches +`mu4e-user-mail-address-regexp', in which case it will be equal to +`:to'.") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; run-time vars used in multiple places diff --git a/src/mu-cmd-server.c b/src/mu-cmd-server.c index 5fe01744..3b12c4f2 100644 --- a/src/mu-cmd-server.c +++ b/src/mu-cmd-server.c @@ -1073,7 +1073,8 @@ cmd_sent (MuStore *store, MuQuery *query, GSList *args, GError **err) else { gchar *escpath; escpath = mu_str_escape_c_literal (path, TRUE); - print_expr ("(:sent t :path %s :docid %u)", escpath, docid); + print_expr ("(:sent t :path %s :docid %u)", + escpath, docid); g_free (escpath); }