aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2007-11-21 03:35:28 +0000
committerJason Rumney2007-11-21 03:35:28 +0000
commita3481da1fb3238ee6e5074383e76893ccdfc476e (patch)
treebdf080ef372b8a86d161b47cb6d387b2c9da762b
parent2097e21d6957dc17f5aca8173218ab24ddf32bb9 (diff)
downloademacs-a3481da1fb3238ee6e5074383e76893ccdfc476e.tar.gz
emacs-a3481da1fb3238ee6e5074383e76893ccdfc476e.zip
(tty-register-default-colors): Remove special case for w32.
-rw-r--r--lisp/term/tty-colors.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/term/tty-colors.el b/lisp/term/tty-colors.el
index 70323e3155b..5622efa022d 100644
--- a/lisp/term/tty-colors.el
+++ b/lisp/term/tty-colors.el
@@ -63,7 +63,6 @@
63;;; Code: 63;;; Code:
64 64
65(defvar msdos-color-values) 65(defvar msdos-color-values)
66(defvar w32-tty-standard-colors)
67 66
68;; The following list is taken from rgb.txt distributed with X. 67;; The following list is taken from rgb.txt distributed with X.
69;; 68;;
@@ -816,8 +815,6 @@ Value is the modified color alist for FRAME."
816 "Register the default set of colors for a character terminal." 815 "Register the default set of colors for a character terminal."
817 (let* ((colors (cond ((eq window-system 'pc) 816 (let* ((colors (cond ((eq window-system 'pc)
818 msdos-color-values) 817 msdos-color-values)
819 ((eq system-type 'windows-nt)
820 w32-tty-standard-colors)
821 (t tty-standard-colors))) 818 (t tty-standard-colors)))
822 (color (car colors))) 819 (color (car colors)))
823 (while colors 820 (while colors