* wl-util.el (wl-display-bytes): Fixed probrem when num <
authorkaoru <kaoru>
Fri, 12 Apr 2002 21:32:30 +0000 (21:32 +0000)
committerkaoru <kaoru>
Fri, 12 Apr 2002 21:32:30 +0000 (21:32 +0000)
1000 return "0B".

wl/ChangeLog
wl/wl-util.el

index 18855a0..34589e4 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-12  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * wl-util.el (wl-display-bytes): Fixed probrem when num <
+       1000 return "0B".
+
 2002-04-11  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * wl.el (wl-check-environment): Cause error when wl-from is nil,
@@ -40,6 +45,7 @@
        * wl-addrmgr.el (wl-addrmgr-quit-yes): Call get-buffer-window with
        2nd argument.
 
+>>>>>>> 1.489
 2002-03-24  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * wl-draft.el (wl-draft-create-contents): Don't take neither
        message is not displayed yet.
        (wl-summary-prev-page): Ditto.
 
-2002-03-11  J\e.A\8eér\8eôme Marant <jerome.marant@free.fr>
+2002-03-11  J\e.A\8e\e,Ai\e(Br\8e\e,At\e(Bme Marant <jerome.marant@free.fr>
 
        * wl-folder.el (wl-folder-mode-menu-spec): Fixed typo.
 
index 0a54b66..12a5cec 100644 (file)
@@ -217,7 +217,7 @@ If HACK-ADDRESSES is t, then the strings are considered to be mail addresses,
       (if (> remain 400)
          (setq result (+ 1 result)))
       (format "%dK" result))
-     (t (format "%dB" result)))))
+     (t (format "%dB" num)))))
 
 (defun wl-mode-line-buffer-identification (&optional id)
   (let ((priorities '(biff plug title)))