* lisp/finder.el (finder-list-matches): Include unversioned packages
in the result of a keyword search.
This commit is contained in:
parent
e94807f07a
commit
ac0f82ef86
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue