Merge from origin/emacs-27
35661ef943
(origin/emacs-27) Fix typo in "(elisp) Type Keywords"1af0e95fec
Gnus nnir-summary-line-format has no effectdd366b5d3b
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 manuals3916e63f9e
Have Fido mode also imitate Ido mode in ignore-case optionscc35b197c7
Update package-menu-quick-helpbf09106256
Improve documentation of 'sort-subr'73749efa13
Update Ukrainian transliteration30a7ee505a
Fix Arabic shaping when eww/shr fill the text to be rendered7d323f07c0
Silence some byte-compiler warnings in testscf473e742f
* test/lisp/battery-tests.el: New file.b07e3b1d97
Improve format-spec documentation (bug#41571) # Conflicts: # test/lisp/emacs-lisp/package-tests.el
This commit is contained in:
commit
fa6d56529f
26 changed files with 414 additions and 169 deletions
|
@ -3302,7 +3302,7 @@ If optional arg BUTTON is non-nil, describe its associated package."
|
|||
'(("install," "delete," "unmark," ("execute" . 1))
|
||||
("next," "previous")
|
||||
("Hide-package," "(-toggle-hidden")
|
||||
("refresh-contents," "g-redisplay," "filter," "help")))
|
||||
("g-refresh-contents," "/-filter," "help")))
|
||||
|
||||
(defun package--prettify-quick-help-key (desc)
|
||||
"Prettify DESC to be displayed as a help menu."
|
||||
|
@ -3310,7 +3310,7 @@ If optional arg BUTTON is non-nil, describe its associated package."
|
|||
(if (listp (cdr desc))
|
||||
(mapconcat #'package--prettify-quick-help-key desc " ")
|
||||
(let ((place (cdr desc))
|
||||
(out (car desc)))
|
||||
(out (copy-sequence (car desc))))
|
||||
(add-text-properties place (1+ place)
|
||||
'(face (bold font-lock-warning-face))
|
||||
out)
|
||||
|
@ -3790,6 +3790,9 @@ packages."
|
|||
(package--has-keyword-p pkg-desc keyword))
|
||||
(concat "keyword:" (string-join keyword ",")))))
|
||||
|
||||
(define-obsolete-function-alias
|
||||
'package-menu-filter #'package-menu-filter-by-keyword "27.1")
|
||||
|
||||
(defun package-menu-filter-by-name (name)
|
||||
"Filter the \"*Packages*\" buffer by NAME regexp.
|
||||
Display only packages with name that matches regexp NAME.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue