From 20813516dc4b92da8a3eb9ffecf75ce6052776c2 Mon Sep 17 00:00:00 2001 From: yoichi Date: Wed, 5 Dec 2001 16:58:58 +0000 Subject: [PATCH] * wl-vars.el (wl-subject-length-limit): This value can be nil, nil means unlimited. --- wl/ChangeLog | 5 +++++ wl/wl-vars.el | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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) -- 1.7.10.4