mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 00:00:39 -08:00
Merge from origin/emacs-25
9ba51edDocument buffer-swap-text+save-excursion interaction452aa94Fix eieio vs cl-generic incompatibilities found in Rudel (bug...248d5ddInclude cl-generic in package--builtin-versions (bug#22817)8f5a8b6Improve timing in `tramp-test29-environment-variables'05ba7a0Add test for handling environment variables in Trampe393d4f* lisp/emacs-lisp/package.el (describe-package-1) (package-st...5e38887; * lisp/net/tramp.el: Fix 2010-10-04 comment typo. (Bug#23913)90f2169; Spelling fixes069fc05Improve documentation of search functions0a0144aDelete environment variables in Tramp when neededf624671Add "New in Emacs 25" section to the FAQ658daf9Fix 'vertical-motion' in non-interactive sessions686b520Fix memory leak in imagemagick-types4069b71Update ELisp manual to match 'string-collate-equalp' doc string1b2d6a6Clarify docstring of find-feature-regexpaac62a6Add details to cl-lib defining macros' docstringsd6aa4daClarify doc string of 'save-buffer'03bcf11Un-confuse doc string of 'string-collate-equalp'c53135bClarify documentation of 'mouse-on-link-p' # Conflicts: # lisp/emacs-lisp/eieio-core.el
This commit is contained in:
commit
6b780a2e97
22 changed files with 467 additions and 119 deletions
|
|
@ -2259,13 +2259,13 @@ Otherwise no newline is inserted."
|
|||
(package--print-help-section "Status")
|
||||
(cond (built-in
|
||||
(insert (propertize (capitalize status)
|
||||
'font-lock-face 'package-status-builtin-face)
|
||||
'font-lock-face 'package-status-built-in)
|
||||
"."))
|
||||
(pkg-dir
|
||||
(insert (propertize (if (member status '("unsigned" "dependency"))
|
||||
"Installed"
|
||||
(capitalize status))
|
||||
'font-lock-face 'package-status-builtin-face))
|
||||
'font-lock-face 'package-status-built-in))
|
||||
(insert (substitute-command-keys " in `"))
|
||||
(let ((dir (abbreviate-file-name
|
||||
(file-name-as-directory
|
||||
|
|
@ -2278,7 +2278,7 @@ Otherwise no newline is inserted."
|
|||
(insert (substitute-command-keys
|
||||
"',\n shadowing a ")
|
||||
(propertize "built-in package"
|
||||
'font-lock-face 'package-status-builtin-face))
|
||||
'font-lock-face 'package-status-built-in))
|
||||
(insert (substitute-command-keys "'")))
|
||||
(if signed
|
||||
(insert ".")
|
||||
|
|
@ -2830,13 +2830,14 @@ Return (PKG-DESC [NAME VERSION STATUS DOC])."
|
|||
"Face used on package description summaries in the package menu."
|
||||
:version "25.1")
|
||||
|
||||
;; Shame this hyphenates "built-in", when "font-lock-builtin-face" doesn't.
|
||||
(defface package-status-built-in
|
||||
'((t :inherit font-lock-builtin-face))
|
||||
"Face used on the status and version of built-in packages."
|
||||
:version "25.1")
|
||||
|
||||
(defface package-status-external
|
||||
'((t :inherit package-status-builtin-face))
|
||||
'((t :inherit package-status-built-in))
|
||||
"Face used on the status and version of external packages."
|
||||
:version "25.1")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue