Mercurial > hg > xemacs-beta
diff lisp/gnus/message.el @ 28:1917ad0d78d7 r19-15b97
Import from CVS: tag r19-15b97
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:51:55 +0200 |
parents | 4103f0995bd7 |
children | ec9a17fef872 |
line wrap: on
line diff
--- a/lisp/gnus/message.el Mon Aug 13 08:51:34 2007 +0200 +++ b/lisp/gnus/message.el Mon Aug 13 08:51:55 2007 +0200 @@ -45,7 +45,8 @@ (user-full-name custom-variable)) "Mail and news message composing." :link '(custom-manual "(message)Top") - :group 'emacs) + :group 'mail + :group 'news) (put 'user-mail-address 'custom-type 'string) (put 'user-full-name 'custom-type 'string) @@ -2234,7 +2235,9 @@ ".fsf"))) (defun message-number-base36 (num len) - (if (if (< len 0) (<= num 0) (= len 0)) + (if (if (< len 0) + (<= num 0) + (= len 0)) "" (concat (message-number-base36 (/ num 36) (1- len)) (char-to-string (aref "zyxwvutsrqponmlkjihgfedcba9876543210" @@ -2789,7 +2792,7 @@ (message-setup (nconc `((To . ,(or to "")) (Subject . ,(or subject ""))) - (when other-headers (list other-headers)))))) + (when other-headers other-headers))))) ;;;###autoload (defun message-news (&optional newsgroups subject)