]> git.eshelyaron.com Git - emacs.git/commitdiff
2005-09-13 Chong Yidong <cyd@stupidchicken.com>
authorChong Yidong <cyd@stupidchicken.com>
Mon, 12 Sep 2005 23:02:16 +0000 (23:02 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 12 Sep 2005 23:02:16 +0000 (23:02 +0000)
* url-mailto.el (url-mailto): Always use a new mail buffer.

lisp/url/ChangeLog
lisp/url/url-mailto.el

index ad0ee15020795a6958318ee4302f74249d9b609c..4235fe13e34b15c5b98e0db05afd5080901aa711 100644 (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
index 3316b7c4b9dcb9e58da5f2050a470a0c7aaae1ac..d5f96184013f9bf8050f6449d38970394d9f7435 100644 (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