diff options
| author | Keith Packard <keithp@keithp.com> | 2009-11-20 20:57:35 -0800 |
|---|---|---|
| committer | Carl Worth <cworth@cworth.org> | 2009-11-23 01:28:29 +0100 |
| commit | 265be025c2372de16f526a6bb85f627651632b6d (patch) | |
| tree | f7480e2ae3f0618f74147fd2533c1ab9a22a962a | |
| parent | 03fd69322b1583e1a05007d303d9fd15a54a02af (diff) | |
Insert signature into replies
When you compose a new message, message mode carefully inserts your
mail signature at the bottom of the message; as notmuch constructs the
reply all by itself, this doesn't happen then. Use the message mode
function 'message-insert-signature' to add that to reply buffers.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | notmuch.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -289,6 +289,7 @@ buffer." (defun notmuch-reply (query-string) (switch-to-buffer (generate-new-buffer "notmuch-draft")) (call-process notmuch-command nil t nil "reply" query-string) + (message-insert-signature) (goto-char (point-min)) (if (re-search-forward "^$" nil t) (progn |
