# HG changeset patch # User Eli Zaretskii # Date 1011964382 0 # Node ID a97674caab3592aeeb6f8ff0dfd6f8842424a23a # Parent 74d5b26ad460c88eff4d14328670df650b2524aa (msdos-color-values): Reverse the order of the colors, since tty-color-define now preserves the registration order. diff -r 74d5b26ad460 -r a97674caab35 lisp/term/pc-win.el --- a/lisp/term/pc-win.el Fri Jan 25 13:11:49 2002 +0000 +++ b/lisp/term/pc-win.el Fri Jan 25 13:13:02 2002 +0000 @@ -43,22 +43,22 @@ ;;; color is ``light''; see `frame-set-background-mode' in lisp/faces.el for ;;; an example. (defvar msdos-color-values - '(("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 + '(("black" 0 0 0 0) + ("blue" 1 0 0 52480) ; MediumBlue + ("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 - ("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 - ("blue" 1 0 0 52480) ; MediumBlue - ("black" 0 0 0 0)) + ("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 MS-DOS console colors, their indices and 16-bit RGB values.") ;; ---------------------------------------------------------------------------