# HG changeset patch # User Katsumi Yamaoka # Date 1283733422 0 # Node ID b38765bfe949aa5647f6e4fb9f47bc5f40583360 # Parent cee903f20270703979bc19b65eecd64d3aa72e69 gnus-sum.el (gnus-set-mode-line): Don\t pad the mode line string. diff -r cee903f20270 -r b38765bfe949 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Mon Sep 06 00:33:15 2010 +0000 +++ b/lisp/gnus/ChangeLog Mon Sep 06 00:37:02 2010 +0000 @@ -1,5 +1,7 @@ 2010-09-05 Lars Magne Ingebrigtsen + * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string. + * nnimap.el (nnimap-open-connection): Revert the change that would look into authinfo for imaps instead of imap. diff -r cee903f20270 -r b38765bfe949 lisp/gnus/gnus-sum.el --- a/lisp/gnus/gnus-sum.el Mon Sep 06 00:33:15 2010 +0000 +++ b/lisp/gnus/gnus-sum.el Mon Sep 06 00:37:02 2010 +0000 @@ -6051,9 +6051,7 @@ (when (> (length mode-string) max-len) (setq mode-string (concat (truncate-string-to-width mode-string (- max-len 3)) - "..."))) - ;; Pad the mode string a bit. - (setq mode-string (format (format "%%-%ds" max-len) mode-string)))) + "..."))))) ;; Update the mode line. (setq mode-line-buffer-identification (gnus-mode-line-buffer-identification (list mode-string)))