* wl-vars.el (wl-subject-length-limit): This value can be nil,
authoryoichi <yoichi>
Wed, 5 Dec 2001 16:58:58 +0000 (16:58 +0000)
committeryoichi <yoichi>
Wed, 5 Dec 2001 16:58:58 +0000 (16:58 +0000)
 nil means unlimited.

wl/ChangeLog
wl/wl-vars.el

index 5d4fdeb..1f5a168 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-06  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-vars.el (wl-subject-length-limit): This value can be nil (nil
+       means unlimited).
+
 2001-12-05  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-draft.el (wl-draft-write-sendlog): Use `write-region-as-binary';
index 8de988b..354b3c0 100644 (file)
@@ -1373,8 +1373,10 @@ with wl-highlight-folder-many-face."
   :group 'wl-pref)
 
 (defcustom wl-subject-length-limit 35
-  "*Subject width in summary."
-  :type 'integer
+  "*Set subject width in summary when wl-summary-width is nil.
+Nil means unlimited"
+  :type '(choice (const :tag "Unlimited" nil)
+                integer)
   :group 'wl-summary
   :group 'wl-pref)