diff lisp/gnus/message.el @ 104:cf808b4c4290 r20-1b4

Import from CVS: tag r20-1b4
author cvs
date Mon, 13 Aug 2007 09:16:51 +0200
parents 4be1180a9e89
children 360340f9fd5f
line wrap: on
line diff
--- a/lisp/gnus/message.el	Mon Aug 13 09:15:51 2007 +0200
+++ b/lisp/gnus/message.el	Mon Aug 13 09:16:51 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)