+2004-09-21 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
+ a trailing whitespace. Suggested by Cheng Gao <chenggao@gmail.com>.
+
2004-09-20 Simon Josefsson <jas@extundo.com>
* mm-util.el (mm-charset-synonym-alist): Map "unicode" to
(defun gnus-inews-make-draft-meta-information (group articles)
(when (numberp articles)
(setq articles (list articles)))
- (concat "(\"" group "\" "
+ (concat "(\"" group "\""
(if articles
- (mapconcat
- (lambda (elem)
- (number-to-string
- (if (consp elem)
- (car elem)
- elem)))
- articles " ")
+ (concat " "
+ (mapconcat
+ (lambda (elem)
+ (number-to-string
+ (if (consp elem)
+ (car elem)
+ elem)))
+ articles " "))
"")
")"))