1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-05 20:43:08 +00:00

2005-09-13 Chong Yidong <cyd@stupidchicken.com>

* url-mailto.el (url-mailto): Always use a new mail buffer.
This commit is contained in:
Chong Yidong 2005-09-12 23:02:16 +00:00
parent 09c9e6bbb9
commit c8359e8fd5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
* url-mailto.el (url-mailto): Always use a new mail buffer.
2005-09-01 Chong Yidong <cyd@stupidchicken.com>
* url-util.el (url-parse-query-string): New optional argument

View File

@ -92,7 +92,7 @@
(setq args (cons (list "to" to) args))))
(setq subject (cdr-safe (assoc "subject" args)))
(if (fboundp url-mail-command) (funcall url-mail-command) (mail))
(if (fboundp url-mail-command) (funcall url-mail-command) (mail 'new))
(while args
(if (string= (caar args) "body")
(progn