2002-04-28 Jesper Harder <harder@ifa.au.dk>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 27 Apr 2002 23:07:35 +0000 (23:07 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 27 Apr 2002 23:07:35 +0000 (23:07 +0000)
* mm-decode.el (mm-text-html-renderer): Change customize type to
const.

* gnus-msg.el (gnus-discouraged-post-methods): Fix typo.
(gnus-debug-exclude-variables): do.

lisp/ChangeLog
lisp/gnus-msg.el
lisp/mm-decode.el

index 0ed2e58..5accffd 100644 (file)
@@ -1,3 +1,11 @@
+2002-04-28  Jesper Harder  <harder@ifa.au.dk>
+
+       * mm-decode.el (mm-text-html-renderer): Change customize type to
+       const.
+
+       * gnus-msg.el (gnus-discouraged-post-methods): Fix typo.
+       (gnus-debug-exclude-variables): do.
+
 2002-04-27  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gnus-msg.el (gnus-article-mail): Use gnus-msg-mail instead.
index 91c3bf6..7b4543c 100644 (file)
@@ -209,7 +209,7 @@ use this option with care."
   "Variables that should not be reported in `gnus-bug'."
   :version "21.1"
   :group 'gnus-message
-  :type '(repeat (symbol :tab "Variable")))
+  :type '(repeat (symbol :tag "Variable")))
 
 (defcustom gnus-discouraged-post-methods
   '(nndraft nnml nnimap nnmaildir nnmh nnfolder nndir)
@@ -217,7 +217,7 @@ use this option with care."
 This variable is used only when `gnus-post-method' is `current'."
   :version "21.3"
   :group 'gnus-group-foreign
-  :type '(repeat (symbol :tab "Back end")))
+  :type '(repeat (symbol :tag "Back end")))
 
 (defcustom gnus-message-replysign
   nil
index a53e042..64d935b 100644 (file)
@@ -111,12 +111,12 @@ The defined renderer types are:
 `lynx' : using lynx;
 `html2text' : using html2text;
 `nil'  : using external viewer."
-  :type '(choice (symbol w3)
-                (symbol w3m)
-                (symbol links)
-                (symbol lynx)
-                (symbol html2text)
-                (symbol nil)
+  :type '(choice (const w3)
+                (const w3m)
+                (const links)
+                (const lynx)
+                (const html2text)
+                (const nil)
                 (function))
   :version "21.3"
   :group 'mime-display)