aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorEli Zaretskii2000-01-03 11:58:12 +0000
committerEli Zaretskii2000-01-03 11:58:12 +0000
commit79b24da30bd5037e85ac9f9bfe5deffa4db9ce14 (patch)
tree04e538ff2bb4133218e214ea1c05e7f46542fe46 /lisp/term
parentda47150ddc221d4e0462e92ed05d9b5055d6195d (diff)
downloademacs-79b24da30bd5037e85ac9f9bfe5deffa4db9ce14.tar.gz
emacs-79b24da30bd5037e85ac9f9bfe5deffa4db9ce14.zip
(xw-defined-colors): Call color-supported-p,
the new name of face-color-supported-p.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/w32-win.el2
-rw-r--r--lisp/term/x-win.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 5bff6c11117..849b0bd1a63 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -528,7 +528,7 @@ This returns ARGS with the arguments that have been processed removed."
528 (while all-colors 528 (while all-colors
529 (setq this-color (car all-colors) 529 (setq this-color (car all-colors)
530 all-colors (cdr all-colors)) 530 all-colors (cdr all-colors))
531 (and (face-color-supported-p frame this-color t) 531 (and (color-supported-p this-color frame t)
532 (setq defined-colors (cons this-color defined-colors)))) 532 (setq defined-colors (cons this-color defined-colors))))
533 defined-colors)) 533 defined-colors))
534 534
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 6b13f14cbb8..24a7da8708a 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -437,7 +437,7 @@ This function returns ARGS minus the arguments that have been processed."
437 (while all-colors 437 (while all-colors
438 (setq this-color (car all-colors) 438 (setq this-color (car all-colors)
439 all-colors (cdr all-colors)) 439 all-colors (cdr all-colors))
440 (and (face-color-supported-p frame this-color t) 440 (and (color-supported-p this-color frame t)
441 (setq defined-colors (cons this-color defined-colors)))) 441 (setq defined-colors (cons this-color defined-colors))))
442 defined-colors)) 442 defined-colors))
443 443