1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* faces.el (read-color): Minor fix for completion function.

This commit is contained in:
Chong Yidong 2013-12-20 14:11:00 +08:00
parent a2f5f43193
commit a9574eb730
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-12-20 Chong Yidong <cyd@gnu.org>
* faces.el (read-color): Minor fix for completion function.
2013-12-20 Dmitry Gutov <dgutov@yandex.ru>
* progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): New

View file

@ -1836,7 +1836,7 @@ resulting color name in the echo area."
(if (color-defined-p string)
(list string))))
((eq flag 'lambda) ; Test completion.
(or (memq string colors)
(or (member string colors)
(color-defined-p string)))))
nil t)))