From: yoichi Date: Mon, 17 Sep 2001 13:38:15 +0000 (+0000) Subject: Fix type of wl-summary-width to accept nil. X-Git-Tag: wl-2_6_1~39 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=413bd997d6a2a6ea37165417edb6f75acf290eae;p=elisp%2Fwanderlust.git Fix type of wl-summary-width to accept nil. (Reported by Reuben Thomas ). --- diff --git a/wl/ChangeLog b/wl/ChangeLog index e310aab..eda89bb 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2001-09-17 Yoichi NAKAYAMA + + * wl-vars.el (wl-summary-width): Fix type to accept nil. + (Reported by Reuben Thomas ). + 2001-09-11 Katsumi Yamaoka * wl-vars.el (wl-biff-state-indicator-on): Use `*iso-2022-jp*' diff --git a/wl/wl-vars.el b/wl/wl-vars.el index dbd2100..2a7d111 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -1246,7 +1246,8 @@ with wl-highlight-folder-many-face." (defcustom wl-summary-width 80 "*Set summary line width if non nil." - :type 'integer + :type '(choice (const :tag "Don't truncate" nil) + integer) :group 'wl-summary :group 'wl-pref)