diff options
| author | Artur Malabarba | 2015-04-06 16:22:07 +0100 |
|---|---|---|
| committer | Artur Malabarba | 2015-04-06 16:22:07 +0100 |
| commit | 67c152efc3d30679bc10641f78159af1aa077999 (patch) | |
| tree | 61f166b64d22da5f7347dfa0d46e56e5b2a74a03 | |
| parent | d521417bf74f46857fb5bee5e601f3d8db633686 (diff) | |
| download | emacs-67c152efc3d30679bc10641f78159af1aa077999.tar.gz emacs-67c152efc3d30679bc10641f78159af1aa077999.zip | |
* emacs-lisp/package.el: Fix lack of "new" packages.
(package-menu--new-package-list)
(package-menu--old-archive-contents): No longer local.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2fa005484a8..d747f5240d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2015-04-06 Artur Malabarba <bruce.connor.am@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/package.el: Fix lack of "new" packages. | ||
| 4 | (package-menu--new-package-list) | ||
| 5 | (package-menu--old-archive-contents): No longer local. | ||
| 6 | |||
| 1 | 2015-04-06 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2015-04-06 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Spelling fix for 'hfy-optimizations' | 9 | Spelling fix for 'hfy-optimizations' |
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index acfab92e7eb..4f71c196de3 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2308,7 +2308,7 @@ will be deleted." | |||
| 2308 | map) | 2308 | map) |
| 2309 | "Local keymap for `package-menu-mode' buffers.") | 2309 | "Local keymap for `package-menu-mode' buffers.") |
| 2310 | 2310 | ||
| 2311 | (defvar-local package-menu--new-package-list nil | 2311 | (defvar package-menu--new-package-list nil |
| 2312 | "List of newly-available packages since `list-packages' was last called.") | 2312 | "List of newly-available packages since `list-packages' was last called.") |
| 2313 | 2313 | ||
| 2314 | (define-derived-mode package-menu-mode tabulated-list-mode "Package Menu" | 2314 | (define-derived-mode package-menu-mode tabulated-list-mode "Package Menu" |
| @@ -2830,7 +2830,7 @@ Optional argument NOQUERY non-nil means do not ask the user to confirm." | |||
| 2830 | (string< (or (package-desc-archive (car A)) "") | 2830 | (string< (or (package-desc-archive (car A)) "") |
| 2831 | (or (package-desc-archive (car B)) ""))) | 2831 | (or (package-desc-archive (car B)) ""))) |
| 2832 | 2832 | ||
| 2833 | (defvar-local package-menu--old-archive-contents nil | 2833 | (defvar package-menu--old-archive-contents nil |
| 2834 | "`package-archive-contents' before the latest refresh.") | 2834 | "`package-archive-contents' before the latest refresh.") |
| 2835 | 2835 | ||
| 2836 | (defun package-menu--populate-new-package-list () | 2836 | (defun package-menu--populate-new-package-list () |