]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line): Don't register default colors for
authorEli Zaretskii <eliz@gnu.org>
Fri, 30 Jul 1999 08:45:36 +0000 (08:45 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 30 Jul 1999 08:45:36 +0000 (08:45 +0000)
MSDOS window-system.

lisp/startup.el

index 38b9b1b8afdd314e90b704c4be8bbe7ff5bbe9c4..d2b2afd57feb5425718a052ee7a9caef14248848 100644 (file)
@@ -790,12 +790,13 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
   ;; terminal init file.  The colors are good for xterm-color and the
   ;; FreeBSD console (cons.*).  They should be sufficient for Linux
   ;; too, I guess.
-  (let ((colors '("black" "red" "green" "yellow" "blue" "magenta"
-                 "cyan" "white"))
-       (i 0))
-    (while colors
-      (face-register-tty-color (car colors) i)
-      (setq colors (cdr colors) i (1+ i))))
+  (or (eq window-system 'pc)   ; pc-win.el did this already
+      (let ((colors '("black" "red" "green" "yellow" "blue" "magenta"
+                     "cyan" "white"))
+           (i 0))
+       (while colors
+         (face-register-tty-color (car colors) i)
+         (setq colors (cdr colors) i (1+ i)))))
   
   ;; Load library for our terminal type.
   ;; User init file can set term-file-prefix to nil to prevent this.