* lisp/emacs-lisp/package.el (package-built-in-p): Treat a min-version of
0 like nil.
This commit is contained in:
parent
84df8b963e
commit
929c0500cc
2 changed files with 8 additions and 3 deletions
|
@ -1,7 +1,12 @@
|
|||
2014-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/package.el (package-built-in-p): Treat a min-version of
|
||||
0 like nil.
|
||||
|
||||
2014-03-27 Dmitry Gutov <dgutov@yandex.ru>
|
||||
|
||||
* progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight
|
||||
special globals with font-lock-builtin-face. (Bug#17057)
|
||||
* progmodes/ruby-mode.el (ruby-font-lock-keywords):
|
||||
Highlight special globals with font-lock-builtin-face. (Bug#17057)
|
||||
|
||||
* progmodes/ruby-mode.el (ruby-syntax-propertize-function):
|
||||
Don't propertize `?' or `!' as symbol constituent when after
|
||||
|
|
|
@ -536,7 +536,7 @@ specifying the minimum acceptable version."
|
|||
(let ((bi (assq package package--builtin-versions)))
|
||||
(cond
|
||||
(bi (version-list-<= min-version (cdr bi)))
|
||||
(min-version nil)
|
||||
((remove 0 min-version) nil)
|
||||
(t
|
||||
(require 'finder-inf nil t) ; For `package--builtins'.
|
||||
(assq package package--builtins))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue