diff options
| author | Glenn Morris | 2020-06-07 09:03:59 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-06-07 09:03:59 -0700 |
| commit | fa6d56529f9ebaedaf62ecbf8887ffecca7dce12 (patch) | |
| tree | 922e12ffbf813534647a96788b9a5fb77b4f2288 /lisp/emacs-lisp | |
| parent | 6cb557e7a58d7f1c2e9afceeba45d0ced2aff214 (diff) | |
| parent | 35661ef943d261f6c43e93e475ddd8516f4a4b62 (diff) | |
| download | emacs-fa6d56529f9ebaedaf62ecbf8887ffecca7dce12.tar.gz emacs-fa6d56529f9ebaedaf62ecbf8887ffecca7dce12.zip | |
Merge from origin/emacs-27
35661ef943 (origin/emacs-27) Fix typo in "(elisp) Type Keywords"
1af0e95fec Gnus nnir-summary-line-format has no effect
dd366b5d3b Improve documentation of 'window-text-pixel-size'
fbd49f969e * src/xdisp.c (Fwindow_text_pixel_size): Doc fix. (Bug#41...
d8593fd19f Minor improvements to EDE and EIEIO manuals
3916e63f9e Have Fido mode also imitate Ido mode in ignore-case options
cc35b197c7 Update package-menu-quick-help
bf09106256 Improve documentation of 'sort-subr'
73749efa13 Update Ukrainian transliteration
30a7ee505a Fix Arabic shaping when eww/shr fill the text to be rendered
7d323f07c0 Silence some byte-compiler warnings in tests
cf473e742f * test/lisp/battery-tests.el: New file.
b07e3b1d97 Improve format-spec documentation (bug#41571)
# Conflicts:
# test/lisp/emacs-lisp/package-tests.el
Diffstat (limited to 'lisp/emacs-lisp')
| -rw-r--r-- | lisp/emacs-lisp/package.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 6298244c399..6fc80594125 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -3302,7 +3302,7 @@ If optional arg BUTTON is non-nil, describe its associated package." | |||
| 3302 | '(("install," "delete," "unmark," ("execute" . 1)) | 3302 | '(("install," "delete," "unmark," ("execute" . 1)) |
| 3303 | ("next," "previous") | 3303 | ("next," "previous") |
| 3304 | ("Hide-package," "(-toggle-hidden") | 3304 | ("Hide-package," "(-toggle-hidden") |
| 3305 | ("refresh-contents," "g-redisplay," "filter," "help"))) | 3305 | ("g-refresh-contents," "/-filter," "help"))) |
| 3306 | 3306 | ||
| 3307 | (defun package--prettify-quick-help-key (desc) | 3307 | (defun package--prettify-quick-help-key (desc) |
| 3308 | "Prettify DESC to be displayed as a help menu." | 3308 | "Prettify DESC to be displayed as a help menu." |
| @@ -3310,7 +3310,7 @@ If optional arg BUTTON is non-nil, describe its associated package." | |||
| 3310 | (if (listp (cdr desc)) | 3310 | (if (listp (cdr desc)) |
| 3311 | (mapconcat #'package--prettify-quick-help-key desc " ") | 3311 | (mapconcat #'package--prettify-quick-help-key desc " ") |
| 3312 | (let ((place (cdr desc)) | 3312 | (let ((place (cdr desc)) |
| 3313 | (out (car desc))) | 3313 | (out (copy-sequence (car desc)))) |
| 3314 | (add-text-properties place (1+ place) | 3314 | (add-text-properties place (1+ place) |
| 3315 | '(face (bold font-lock-warning-face)) | 3315 | '(face (bold font-lock-warning-face)) |
| 3316 | out) | 3316 | out) |
| @@ -3790,6 +3790,9 @@ packages." | |||
| 3790 | (package--has-keyword-p pkg-desc keyword)) | 3790 | (package--has-keyword-p pkg-desc keyword)) |
| 3791 | (concat "keyword:" (string-join keyword ","))))) | 3791 | (concat "keyword:" (string-join keyword ","))))) |
| 3792 | 3792 | ||
| 3793 | (define-obsolete-function-alias | ||
| 3794 | 'package-menu-filter #'package-menu-filter-by-keyword "27.1") | ||
| 3795 | |||
| 3793 | (defun package-menu-filter-by-name (name) | 3796 | (defun package-menu-filter-by-name (name) |
| 3794 | "Filter the \"*Packages*\" buffer by NAME regexp. | 3797 | "Filter the \"*Packages*\" buffer by NAME regexp. |
| 3795 | Display only packages with name that matches regexp NAME. | 3798 | Display only packages with name that matches regexp NAME. |