changeset 27101:a5791b2ee668

(xw-defined-colors): Call color-supported-p, the new name of face-color-supported-p.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 03 Jan 2000 11:58:12 +0000
parents 9a0d8503806e
children ee69ae645ed7
files lisp/term/w32-win.el lisp/term/x-win.el
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/term/w32-win.el	Mon Jan 03 11:51:33 2000 +0000
+++ b/lisp/term/w32-win.el	Mon Jan 03 11:58:12 2000 +0000
@@ -528,7 +528,7 @@
     (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))
 
--- a/lisp/term/x-win.el	Mon Jan 03 11:51:33 2000 +0000
+++ b/lisp/term/x-win.el	Mon Jan 03 11:58:12 2000 +0000
@@ -437,7 +437,7 @@
     (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))