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.
: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.")
(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)