diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-08-12 13:42:14 -0400 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-08-12 13:42:14 -0400 |
commit | b289f0769f0a43fdaabec41b92bacc51acbc4b9b (patch) | |
tree | af63ebaee6937d7bf1be228948d81681527f056c /lisp/emacs-lisp | |
parent | de6c1c4d5c92b92d5b280e157c2a5bc3228749f2 (diff) | |
parent | 4767f5eaeedef57dfcc119399e5855f41c2e1be5 (diff) | |
download | emacs-b289f0769f0a43fdaabec41b92bacc51acbc4b9b.tar.gz emacs-b289f0769f0a43fdaabec41b92bacc51acbc4b9b.tar.bz2 emacs-b289f0769f0a43fdaabec41b92bacc51acbc4b9b.zip |
Merge from origin/emacs-29
4767f5eaeed Better fix for bug#65156
dd1d8414b33 Fix insert-file-contents with pipes and /dev/stdin
50649a6d1a2 ; * etc/PROBLEMS: Fix wording.
f0dda682ffb ; * etc/NEWS.28: Add deletion of levents.el.
f4acae842c0 Fix bug#65042
e1874c4e8bf * configure.ac (HAVE_TREE_SITTER): Set NEED_DYNLIB=yes (b...
ef8838c3a5f * etc/NEWS: Mention tramp-show-ad-hoc-proxies.
495bee253fc * test/lisp/net/tramp-tests.el (tramp-test42-utf8): Skip ...
de1effd73b4 ; Fix last change
7c7966862bc * test/lisp/net/tramp-tests.el (tramp-test10-write-region...
16205e8db65 ; Improve help-echo in package.el
a95e7006989 ; Filter packages available for upgrade via menu bar
adff72dd1d2 Fix reverting Rmail buffers
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 42 |
1 files changed, 30 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 6ce00bf4d6d..b3062d2608b 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -3088,18 +3088,36 @@ either a full name or nil, and EMAIL is a valid email address." "--" ("Filter Packages" - ["Filter by Archive" package-menu-filter-by-archive :help "Filter packages by archive"] - ["Filter by Description" package-menu-filter-by-description :help "Filter packages by description"] - ["Filter by Keyword" package-menu-filter-by-keyword :help "Filter packages by keyword"] - ["Filter by Name" package-menu-filter-by-name :help "Filter packages by name"] + ["Filter by Archive" package-menu-filter-by-archive + :help + "Prompt for archive(s), display only packages from those archives"] + ["Filter by Description" package-menu-filter-by-description + :help + "Prompt for regexp, display only packages with matching description"] + ["Filter by Keyword" package-menu-filter-by-keyword + :help + "Prompt for keyword(s), display only packages with matching keywords"] + ["Filter by Name" package-menu-filter-by-name + :help + "Prompt for regexp, display only packages whose names match the regexp"] ["Filter by Name or Description" package-menu-filter-by-name-or-description - :help "Filter packages by name or description"] - ["Filter by Status" package-menu-filter-by-status :help "Filter packages by status"] - ["Filter by Version" package-menu-filter-by-version :help "Filter packages by version"] - ["Filter Marked" package-menu-filter-marked :help "Filter packages marked for upgrade"] - ["Clear Filter" package-menu-clear-filter :help "Clear package list filter"]) - - ["Hide by Regexp" package-menu-hide-package :help "Hide all packages matching a regexp"] + :help + "Prompt for regexp, display only packages whose name or description matches"] + ["Filter by Status" package-menu-filter-by-status + :help + "Prompt for status(es), display only packages with those statuses"] + ["Filter by Upgrades available" package-menu-filter-upgradable + :help "Display only installed packages for which upgrades are available"] + ["Filter by Version" package-menu-filter-by-version + :help + "Prompt for version and comparison operator, display only packages of matching versions"] + ["Filter Marked" package-menu-filter-marked + :help "Display only packages marked for installation or deletion"] + ["Clear Filter" package-menu-clear-filter + :help "Clear package list filtering, display the entire list again"]) + + ["Hide by Regexp" package-menu-hide-package + :help "Toggle visibility of obsolete and unwanted packages"] ["Display Older Versions" package-menu-toggle-hiding :style toggle :selected (not package-menu--hide-packages) :help "Display package even if a newer version is already installed"] @@ -4295,7 +4313,7 @@ STATUS can be a single status, a string, or a list of strings. If STATUS is nil or the empty string, show all packages. When called interactively, prompt for STATUS. To specify -several possible status values, type them seperated by commas." +several possible status values, type them separated by commas." (interactive (list (completing-read "Filter by status: " '("avail-obso" "available" |