]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/package.el: Fix initially wrong compat table
authorArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 12 Apr 2015 01:33:29 +0000 (02:33 +0100)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 12 Apr 2015 01:33:29 +0000 (02:33 +0100)
(package--build-compatibility-table): require finder

lisp/emacs-lisp/package.el

index 22575ca472f44dea5c26f2f3488d19ef037e266a..8920bf6a81ddf53306387b34c5f24e974a44b0d6 100644 (file)
@@ -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))