diff options
| author | Julien Danjou | 2010-11-22 11:33:06 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-11-22 11:33:06 +0000 |
| commit | 440b1345f63d5ce7e3924a20779e259e75c6c776 (patch) | |
| tree | 2915eb4996e3b7163ac19488e90cfc12a0e8627f | |
| parent | c799747bd6b3a121d760ed5b4063a05cda425e81 (diff) | |
| download | emacs-440b1345f63d5ce7e3924a20779e259e75c6c776.tar.gz emacs-440b1345f63d5ce7e3924a20779e259e75c6c776.zip | |
gnus-art.el (gnus-url-mailto): Do not downcase args.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 365e49bf367..2ecc126edb1 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-11-22 Julien Danjou <julien@danjou.info> | ||
| 2 | |||
| 3 | * gnus-art.el (gnus-url-mailto): Do not downcase args. | ||
| 4 | |||
| 1 | 2010-11-21 Andrew Cohen <cohen@andy.bu.edu> | 5 | 2010-11-21 Andrew Cohen <cohen@andy.bu.edu> |
| 2 | 6 | ||
| 3 | * nnir.el: Fix typo in comments. | 7 | * nnir.el: Fix typo in comments. |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 51d3246b79b..53d82cadb8b 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -8155,8 +8155,7 @@ url is put as the `gnus-button-url' overlay property on the button." | |||
| 8155 | (if (string-match "^\\([^?]+\\)\\?\\(.*\\)" url) | 8155 | (if (string-match "^\\([^?]+\\)\\?\\(.*\\)" url) |
| 8156 | (concat "to=" (match-string 1 url) "&" | 8156 | (concat "to=" (match-string 1 url) "&" |
| 8157 | (match-string 2 url)) | 8157 | (match-string 2 url)) |
| 8158 | (concat "to=" url))) | 8158 | (concat "to=" url)))) |
| 8159 | t) | ||
| 8160 | subject (cdr-safe (assoc "subject" args))) | 8159 | subject (cdr-safe (assoc "subject" args))) |
| 8161 | (gnus-msg-mail) | 8160 | (gnus-msg-mail) |
| 8162 | (while args | 8161 | (while args |