From: yoichi Date: Wed, 5 Dec 2001 16:58:58 +0000 (+0000) Subject: * wl-vars.el (wl-subject-length-limit): This value can be nil, X-Git-Tag: wl-2_8-root~91 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=20813516dc4b92da8a3eb9ffecf75ce6052776c2;p=elisp%2Fwanderlust.git * wl-vars.el (wl-subject-length-limit): This value can be nil, nil means unlimited. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index 5d4fdeb..1f5a168 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2001-12-06 Yoichi NAKAYAMA + + * wl-vars.el (wl-subject-length-limit): This value can be nil (nil + means unlimited). + 2001-12-05 Yuuichi Teranishi * wl-draft.el (wl-draft-write-sendlog): Use `write-region-as-binary'; diff --git a/wl/wl-vars.el b/wl/wl-vars.el index 8de988b..354b3c0 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -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)