diff --git a/TODO b/TODO index c199e894..8ade304c 100644 --- a/TODO +++ b/TODO @@ -32,7 +32,6 @@ - tooltip for flags field - handling of database upgrades - restore point after rerunning a search - - fix emacs23 mailto: handling - fix emacs23 auto-completion - fix message interference - opening urls is too eager @@ -71,6 +70,7 @@ - strip signature from original when replying - make refresh after changing sort, threads the default - contact completion (see Jacek's 'mu4e: using' mail) + - *FIX* emacs23 mailto: handling # Local Variables: # mode: org; org-startup-folded: nil diff --git a/emacs/mu4e-utils.el b/emacs/mu4e-utils.el index 08056c77..e5fcfa46 100644 --- a/emacs/mu4e-utils.el +++ b/emacs/mu4e-utils.el @@ -61,17 +61,14 @@ dir already existed, or has been created, nil otherwise." (mu4e~proc-mkdir dir)) (t nil))) - - (defun mu4e-format (frm &rest args) "Create [mu4e]-prefixed string based on format FRM and ARGS." (concat "[" mu4e-logo "] " (apply 'format frm args))) - + (defun mu4e-message (frm &rest args) "Like `message', but prefixed with mu4e." (message "%s" (apply 'mu4e-format frm args))) - (defun mu4e~read-char-choice (prompt choices) "Compatiblity wrapper for `read-char-choice', which is emacs-24 only."