]> git.eshelyaron.com Git - emacs.git/commitdiff
(pop3-display-message-size-flag): Removed -- everybody wants message sizes.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 5 Sep 2010 00:49:07 +0000 (00:49 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 5 Sep 2010 00:49:07 +0000 (00:49 +0000)
lisp/gnus/ChangeLog
lisp/gnus/pop3.el

index b73216ae70202fd430e7730c8aea66d201708acc..9d1571751c183fa8756e9a4a23ba01e1ea951d71 100644 (file)
@@ -1,5 +1,8 @@
 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
+       message sizes.
+
        * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
        file once per `g' run.
 
index be9ed179d2839466f98373463cc86b32ab9dcce5..b8f724c918d8c818afd207aa9dc7a995cd191fda 100644 (file)
@@ -98,12 +98,6 @@ thing can fall apart and leave you with a corrupt mailbox."
   :type 'boolean
   :group 'pop3)
 
-(defcustom pop3-display-message-size-flag t
-  "*If non-nil, display the size of the message that is being fetched."
-  :version "22.1" ;; Oort Gnus
-  :type 'boolean
-  :group 'pop3)
-
 (defvar pop3-timestamp nil
   "Timestamp returned when initially connected to the POP server.
 Used for APOP authentication.")
@@ -161,13 +155,10 @@ Shorter values mean quicker response, but are more CPU intensive.")
       (setq message-sizes (pop3-list process)))
     (unwind-protect
        (while (<= n message-count)
-         (if pop3-display-message-size-flag
-             (message "Retrieving message %d of %d from %s... (%.1fk)"
-                      n message-count pop3-mailhost
-                      (/ (cdr (assoc n message-sizes))
-                         1024.0))
-           (message "Retrieving message %d of %d from %s..."
-                    n message-count pop3-mailhost))
+         (message "Retrieving message %d of %d from %s... (%.1fk)"
+                  n message-count pop3-mailhost
+                  (/ (cdr (assoc n message-sizes))
+                     1024.0))
          (pop3-retr process n crashbuf)
          (save-excursion
            (set-buffer crashbuf)