diff options
author | Kenichi Handa <handa@m17n.org> | 2010-11-01 16:53:08 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-11-01 16:53:08 +0900 |
commit | f6f3366160e26ff5984f287e60616ec9f90acfa3 (patch) | |
tree | 9f5c8dc73cad6319a8fdf1ab22fd4e9901089e50 /lisp/gnus/gnus-msg.el | |
parent | 65b6b59a8030b09d2a32ee88837a061e22751988 (diff) | |
parent | ca7c89d8f52b34f694031f496600f949640ff9c4 (diff) | |
download | emacs-f6f3366160e26ff5984f287e60616ec9f90acfa3.tar.gz emacs-f6f3366160e26ff5984f287e60616ec9f90acfa3.tar.bz2 emacs-f6f3366160e26ff5984f287e60616ec9f90acfa3.zip |
merge trunk
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index a3c5112ee41..544aa7776a8 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1628,7 +1628,7 @@ this is a reply." (unless (gnus-check-server method) (error "Can't open server %s" (if (stringp method) method (car method)))) - (unless (gnus-request-group group nil method) + (unless (gnus-request-group group t method) (gnus-request-create-group group method)) (setq mml-externalize-attachments (if (stringp gnus-gcc-externalize-attachments) @@ -1891,7 +1891,11 @@ this is a reply." (setq v (cond ((stringp value) - value) + (if (and (stringp match) + (gnus-string-match-p "\\\\[&[:digit:]]" value) + (match-beginning 1)) + (gnus-match-substitute-replacement value nil nil group) + value)) ((or (symbolp value) (functionp value)) (cond ((functionp value) |