summaryrefslogtreecommitdiff
path: root/lisp/w32-fns.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2002-01-25 13:14:16 +0000
committerEli Zaretskii <eliz@gnu.org>2002-01-25 13:14:16 +0000
commit4cd125c256227b0367cdcd219f89ca021ed60106 (patch)
tree734f254768f290e6082c3cd01314c4979b918891 /lisp/w32-fns.el
parent3de9b05e430b6843b6f948db1cb081c7ccd93f2c (diff)
downloademacs-4cd125c256227b0367cdcd219f89ca021ed60106.tar.gz
(w32-tty-standard-colors): Reverse the order of standard console colors.
Diffstat (limited to 'lisp/w32-fns.el')
-rw-r--r--lisp/w32-fns.el30
1 files changed, 15 insertions, 15 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el
index d22b718d5ee..3c643533cc1 100644
--- a/lisp/w32-fns.el
+++ b/lisp/w32-fns.el
@@ -341,22 +341,22 @@ w32-system-coding-system is now an alias for `locale-coding-system'."
;; W32 uses different color indexes than standard:
(defvar w32-tty-standard-colors
- '(("white" 15 65535 65535 65535)
- ("yellow" 14 65535 65535 0) ; Yellow
- ("lightmagenta" 13 65535 0 65535) ; Magenta
- ("lightred" 12 65535 0 0) ; Red
- ("lightcyan" 11 0 65535 65535) ; Cyan
- ("lightgreen" 10 0 65535 0) ; Green
- ("lightblue" 9 0 0 65535) ; Blue
- ("darkgray" 8 26112 26112 26112) ; Gray40
- ("lightgray" 7 48640 48640 48640) ; Gray
- ("brown" 6 40960 20992 11520) ; Sienna
- ("magenta" 5 35584 0 35584) ; DarkMagenta
- ("red" 4 45568 8704 8704) ; FireBrick
- ("cyan" 3 0 52736 53504) ; DarkTurquoise
- ("green" 2 8704 35584 8704) ; ForestGreen
+ '(("black" 0 0 0 0)
("blue" 1 0 0 52480) ; MediumBlue
- ("black" 0 0 0 0))
+ ("green" 2 8704 35584 8704) ; ForestGreen
+ ("cyan" 3 0 52736 53504) ; DarkTurquoise
+ ("red" 4 45568 8704 8704) ; FireBrick
+ ("magenta" 5 35584 0 35584) ; DarkMagenta
+ ("brown" 6 40960 20992 11520) ; Sienna
+ ("lightgray" 7 48640 48640 48640) ; Gray
+ ("darkgray" 8 26112 26112 26112) ; Gray40
+ ("lightblue" 9 0 0 65535) ; Blue
+ ("lightgreen" 10 0 65535 0) ; Green
+ ("lightcyan" 11 0 65535 65535) ; Cyan
+ ("lightred" 12 65535 0 0) ; Red
+ ("lightmagenta" 13 65535 0 65535) ; Magenta
+ ("yellow" 14 65535 65535 0) ; Yellow
+ ("white" 15 65535 65535 65535))
"A list of VGA console colors, their indices and 16-bit RGB values.")