* lisp/finder.el (finder-list-matches): Include unversioned packages

in the result of a keyword search.
This commit is contained in:
Glenn Morris 2014-03-14 16:41:01 -04:00
parent e94807f07a
commit ac0f82ef86
2 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2014-03-14 Glenn Morris <rgm@gnu.org>
* finder.el (finder-list-matches): Include unversioned packages
in the result of a keyword search.
* finder.el (finder--builtins-descriptions): New constant.
(finder-compile-keywords): Use finder--builtins-descriptions.

View file

@ -353,7 +353,8 @@ not `finder-known-keywords'."
(packages (gethash id finder-keywords-hash)))
(unless packages
(error "No packages matching key `%s'" key))
(package-show-package-list packages)))
(let ((package-list-unversioned t))
(package-show-package-list packages))))
(define-button-type 'finder-xref 'action #'finder-goto-xref)