Fix type of wl-summary-width to accept nil.
authoryoichi <yoichi>
Mon, 17 Sep 2001 13:19:51 +0000 (13:19 +0000)
committeryoichi <yoichi>
Mon, 17 Sep 2001 13:19:51 +0000 (13:19 +0000)
(Reported by Reuben Thomas <rrt@dcs.gla.ac.uk>).

wl/ChangeLog
wl/wl-vars.el

index 224004d..d8b1d97 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-17  Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-vars.el (wl-summary-width): Fix type to accept nil.
+       (Reported by Reuben Thomas <rrt@dcs.gla.ac.uk>).
+
 2001-09-16  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-acap.el (toplevel): Added `product-provide' declare.
index cd5a79e..6a28dd5 100644 (file)
@@ -1286,7 +1286,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)