mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Avoid using aliases for color functions
* lisp/emulation/viper-init.el (viper-has-face-support-p): * lisp/emulation/viper-util.el (viper-save-cursor-color) (viper-change-cursor-color): * lisp/faces.el (read-color): * lisp/net/dictionary.el (dictionary-color-support): * lisp/obsolete/gs.el (gs-set-ghostview-colors-window-prop): * lisp/progmodes/cperl-mode.el (cperl-choose-color): * lisp/woman.el (woman-fontify): Avoid using aliases for color-defined-p, display-color-p, and color-values.
This commit is contained in:
parent
06cb954ae3
commit
32d8fc999c
7 changed files with 12 additions and 12 deletions
|
|
@ -98,7 +98,7 @@
|
|||
(let (answer)
|
||||
(while list
|
||||
(or answer
|
||||
(if (or (x-color-defined-p (car list))
|
||||
(if (or (color-defined-p (car list))
|
||||
(null (cdr list)))
|
||||
(setq answer (car list))))
|
||||
(setq list (cdr list)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue