diff options
author | Gnus developers <ding@gnus.org> | 2011-07-05 22:27:16 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2011-07-05 22:27:16 +0000 |
commit | d30dd079c92097ac9eee48d574ce609da778b50f (patch) | |
tree | cac68c7b7f6811d28ccd8257459c2ca50ea6a7a7 /lisp/gnus/gnus-msg.el | |
parent | 0e4260bf5d321e16e1a0261b10a6305ac06819ff (diff) | |
download | emacs-d30dd079c92097ac9eee48d574ce609da778b50f.tar.gz emacs-d30dd079c92097ac9eee48d574ce609da778b50f.tar.bz2 emacs-d30dd079c92097ac9eee48d574ce609da778b50f.zip |
Merge changes made in Gnus trunk.
gnus.texi (Expiring Mail): Document gnus-auto-expirable-marks.
nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir `notmuch' backend.
mm-decode.el (mm-text-html-renderer): Doc fix.
gnus-msg.el (gnus-bug): Fix the MML tag.
pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
gnus-start.el (gnus-get-unread-articles): Don't connect to the secondary methods if started with `gnus-no-server'.
gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several bug reports at once.
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index b265a681eb8..bad474b4057 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1480,10 +1480,10 @@ If YANK is non-nil, include the original article." (erase-buffer) (gnus-debug) (setq text (buffer-string))) - (insert (concat "<#part type=application/emacs-lisp" - "disposition=inline description=\"User settings\">\n" - text - "\n<#/part>"))) + (insert "<#part type=application/emacs-lisp " + "disposition=inline description=\"User settings\">\n" + text + "\n<#/part>")) (goto-char (point-min)) (search-forward "Subject: " nil t) (message ""))) |