aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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