diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-12 02:33:29 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-12 02:33:29 +0100 |
commit | 357edb4e89e9a6a9a436f88d83cd2bc7c9da29eb (patch) | |
tree | 36319ceef66893df4c0c8fc4135df6fe52d07394 /lisp/emacs-lisp/package.el | |
parent | f80027b37ac4d41dcc4ad7ce1e486dd194307b5d (diff) | |
download | emacs-357edb4e89e9a6a9a436f88d83cd2bc7c9da29eb.tar.gz emacs-357edb4e89e9a6a9a436f88d83cd2bc7c9da29eb.tar.bz2 emacs-357edb4e89e9a6a9a436f88d83cd2bc7c9da29eb.zip |
* lisp/emacs-lisp/package.el: Fix initially wrong compat table
(package--build-compatibility-table): require finder
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 22575ca472f..8920bf6a81d 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -1199,6 +1199,8 @@ version higher than the one being used. To check for package (defun package--build-compatibility-table () "Build `package--compatibility-table' with `package--mapc'." + ;; Initialize the list of built-ins. + (require 'finder-inf nil t) ;; Build compat table. (setq package--compatibility-table (make-hash-table :test 'eq)) (package--mapc #'package--add-to-compatibility-table)) |