diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 5e9caf58a64..15f0f93cf5b 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -3543,10 +3543,16 @@ shown." | |||
| 3543 | (defun package-menu-filter (keyword) | 3543 | (defun package-menu-filter (keyword) |
| 3544 | "Filter the *Packages* buffer. | 3544 | "Filter the *Packages* buffer. |
| 3545 | Show only those items that relate to the specified KEYWORD. | 3545 | Show only those items that relate to the specified KEYWORD. |
| 3546 | |||
| 3546 | KEYWORD can be a string or a list of strings. If it is a list, a | 3547 | KEYWORD can be a string or a list of strings. If it is a list, a |
| 3547 | package will be displayed if it matches any of the keywords. | 3548 | package will be displayed if it matches any of the keywords. |
| 3548 | Interactively, it is a list of strings separated by commas. | 3549 | Interactively, it is a list of strings separated by commas. |
| 3549 | 3550 | ||
| 3551 | KEYWORD can also be used to filter by status or archive name by | ||
| 3552 | using keywords like \"arc:gnu\" and \"status:available\". | ||
| 3553 | Statuses available include \"incompat\", \"available\", | ||
| 3554 | \"built-in\" and \"installed\". | ||
| 3555 | |||
| 3550 | To restore the full package list, type `q'." | 3556 | To restore the full package list, type `q'." |
| 3551 | (interactive | 3557 | (interactive |
| 3552 | (list (completing-read-multiple | 3558 | (list (completing-read-multiple |