X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-mua.el;h=5462f54373cdde9b5f5415875545b3fe08fc0185;hb=10f4724a8d51a411d8f63d9449a38cd71bee6ae9;hp=2d6825d790a4b7b3ff0a0756671dc469258e8d25;hpb=332b5937751203a6be053b01d47ea8c777a5f60c;p=notmuch diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 2d6825d7..5462f543 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -278,7 +278,7 @@ Note that these functions use `mail-citation-hook' if that is non-nil." (define-key notmuch-message-mode-map (kbd "C-c C-c") #'notmuch-mua-send-and-exit) (define-key notmuch-message-mode-map (kbd "C-c C-s") #'notmuch-mua-send) -(defun notmuch-mua-pop-to-buffer (name) +(defun notmuch-mua-pop-to-buffer (name switch-function) "Pop to buffer NAME, and warn if it already exists and is modified. This function is notmuch addaptation of `message-pop-to-buffer'." @@ -291,7 +291,7 @@ modified. This function is notmuch addaptation of (progn (gnus-select-frame-set-input-focus (window-frame window)) (select-window window)) - (funcall (notmuch-mua-get-switch-function) buffer) + (funcall switch-function buffer) (set-buffer buffer)) (when (and (buffer-modified-p) (not (prog1 @@ -299,7 +299,7 @@ modified. This function is notmuch addaptation of "Message already being composed; erase? ") (message nil)))) (error "Message being composed"))) - (funcall (notmuch-mua-get-switch-function) name) + (funcall switch-function name) (set-buffer name)) (erase-buffer) (notmuch-message-mode))) @@ -319,10 +319,11 @@ modified. This function is notmuch addaptation of (push (cons 'From (concat (notmuch-user-name) " <" (notmuch-user-primary-email) ">")) other-headers)) - (notmuch-mua-pop-to-buffer (message-buffer-name "mail" to)) + (notmuch-mua-pop-to-buffer (message-buffer-name "mail" to) + (or switch-function (notmuch-mua-get-switch-function))) (let ((headers - ;; The following sexp is copied from `message-mail' - (nconc + (append + ;; The following is copied from `message-mail' `((To . ,(or to "")) (Subject . ,(or subject ""))) ;; C-h f compose-mail says that headers should be specified as ;; (string . value); however all the rest of message expects