From 4bde99bd852e77f87a02aebbe6da7c415f901246 Mon Sep 17 00:00:00 2001 From: okazaki Date: Sat, 3 Jun 2000 11:57:45 +0000 Subject: [PATCH] * wl-vars.el (wl-smtp-posting-server): Customization Type fix. (wl-summary-showto-folder-regexp): Ditto. --- wl/wl-vars.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wl/wl-vars.el b/wl/wl-vars.el index 383cbb6..e79dbdc 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -275,7 +275,8 @@ If nil, default smtp connection type is used." (defcustom wl-smtp-posting-server nil "*SMTP server name to send mail (wl-draft-send-mail-with-smtp)." - :type 'string + :type '(choice (const :tag "none" nil) + string) :group 'wl) (defcustom wl-smtp-posting-port nil @@ -1495,8 +1496,9 @@ already existing summary." (defcustom wl-summary-showto-folder-regexp nil "Regexp specifying the folder that shows the To (or Newsgroups) field as - Sender information in summary mode." - :type 'regexp +Sender information in summary mode." + :type '(choice (const :tag "none" nil) + regexp) :group 'wl-summary) (defcustom wl-folder-removed-mark "#" -- 1.7.10.4