* cosmetics

This commit is contained in:
djcb
2012-04-26 17:53:34 +03:00
parent ed8bc7fb3b
commit 5ea06f1469
3 changed files with 7 additions and 5 deletions

View File

@ -732,7 +732,7 @@ current window. "
(bury-buffer) (bury-buffer)
(delete-windows-on buf) ;; destroy all windows for this buffer (delete-windows-on buf) ;; destroy all windows for this buffer
(kill-buffer buf))) (kill-buffer buf)))
(mu4e-main-view))) (mu4e~main-view)))
(defun mu4e-rerun-search () (defun mu4e-rerun-search ()

View File

@ -286,11 +286,12 @@ headers)."
(:path . "Path") (:path . "Path")
(:subject . "Subject") (:subject . "Subject")
(:to . "To")) (: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 column headers in the header list, and the fields the message
view). Most fields should be self-explanatory. A special one is view). Most fields should be self-explanatory. A special one is
`:from-or-to', which is equal to `:from' unless `:from' matches , `:from-or-to', which is equal to `:from' unless `:from' matches
in which case it will be equal to `:to'.)") `mu4e-user-mail-address-regexp', in which case it will be equal to
`:to'.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; run-time vars used in multiple places ;; run-time vars used in multiple places

View File

@ -1073,7 +1073,8 @@ cmd_sent (MuStore *store, MuQuery *query, GSList *args, GError **err)
else { else {
gchar *escpath; gchar *escpath;
escpath = mu_str_escape_c_literal (path, TRUE); 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); g_free (escpath);
} }