From b2c3a7e8652ff6fa4d815253d9b3aa6c59c0239b Mon Sep 17 00:00:00 2001 From: teranisi Date: Thu, 30 May 2002 06:44:37 +0000 Subject: [PATCH] * wl-summary.el (wl-summary-line-list-count): Use ".0f" for ml-count formatting. --- wl/ChangeLog | 5 +++++ wl/wl-summary.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index 290da80..53faf8f 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2002-05-30 Yuuichi Teranishi + + * wl-summary.el (wl-summary-line-list-count): Use ".0f" for ml-count + formatting. + 2002-05-26 Yuuichi Teranishi * wl-highlight.el (wl-highlight-summary): Added optional `lazy' diff --git a/wl/wl-summary.el b/wl/wl-summary.el index a6d7aa8..58fb80a 100644 --- a/wl/wl-summary.el +++ b/wl/wl-summary.el @@ -4185,7 +4185,7 @@ If ARG, exit virtual folder." return-path) (match-string 1 return-path)))) (if ml-count - (format "%d" (string-to-int ml-count)) + (format "%.0f" (string-to-number ml-count)) ""))) (defun wl-summary-line-attached () -- 1.7.10.4