diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-08 19:27:45 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-08 19:27:45 +0100 |
commit | a480a51f2425c0b0787ab36779ae2e7ca7c6b527 (patch) | |
tree | 12f95019934b5d32a2cceda419d6a74a3f69037c /lisp/emacs-lisp | |
parent | 0465c9dd42a969aec375e6828ea70c3ad4c72c1c (diff) | |
download | emacs-a480a51f2425c0b0787ab36779ae2e7ca7c6b527.tar.gz emacs-a480a51f2425c0b0787ab36779ae2e7ca7c6b527.tar.bz2 emacs-a480a51f2425c0b0787ab36779ae2e7ca7c6b527.zip |
* lisp/emacs-lisp/package.el (package-menu-mode): Mode-line notification
while dowloading information.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 10003c42085..fa80ffee016 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2325,6 +2325,10 @@ will be deleted." Letters do not insert themselves; instead, they are commands. \\<package-menu-mode-map> \\{package-menu-mode-map}" + (setq mode-line-buffer-identification + (list 'package--downloads-in-progress + (propertized-buffer-identification "[Loading...]") + mode-line-buffer-identification)) (setq tabulated-list-format `[("Package" 18 package-menu--name-predicate) ("Version" 13 nil) |