* lisp/emacs-lisp/nadvice.el: Make it a package separate from emacs
.
* lisp/finder.el (finder-compile-keywords): Grab version from package--builtin-versions when available.
This commit is contained in:
parent
d8732a8245
commit
851535f587
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,6 @@
|
|||
|
||||
;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
;; Keywords: extensions, lisp, tools
|
||||
;; Package: emacs
|
||||
|
||||
;; This program is free software; you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
|
|
|
@ -240,7 +240,8 @@ from; the default is `load-path'."
|
|||
(lm-synopsis))
|
||||
version (lm-header "version")))
|
||||
(when summary
|
||||
(setq version (ignore-errors (version-to-list version)))
|
||||
(setq version (or (ignore-errors (version-to-list version))
|
||||
(alist-get package package--builtin-versions)))
|
||||
(setq entry (assq package package--builtins))
|
||||
(cond ((null entry)
|
||||
(push (cons package
|
||||
|
|
Loading…
Add table
Reference in a new issue