1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(xw-defined-colors): Call color-supported-p,

the new name of face-color-supported-p.
This commit is contained in:
Eli Zaretskii 2000-01-03 11:58:12 +00:00
parent da47150ddc
commit 79b24da30b
2 changed files with 2 additions and 2 deletions

View File

@ -528,7 +528,7 @@ This returns ARGS with the arguments that have been processed removed."
(while all-colors
(setq this-color (car all-colors)
all-colors (cdr all-colors))
(and (face-color-supported-p frame this-color t)
(and (color-supported-p this-color frame t)
(setq defined-colors (cons this-color defined-colors))))
defined-colors))

View File

@ -437,7 +437,7 @@ This function returns ARGS minus the arguments that have been processed."
(while all-colors
(setq this-color (car all-colors)
all-colors (cdr all-colors))
(and (face-color-supported-p frame this-color t)
(and (color-supported-p this-color frame t)
(setq defined-colors (cons this-color defined-colors))))
defined-colors))