Some fixes to follow coding conventions.
[bpt/emacs.git] / lisp / term / mac-win.el
1 ;;; mac-win.el --- support for "Macintosh windows"
2
3 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc.
4
5 ;; Author: Andrew Choi <akochoi@i-cable.com>
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 ;; ---------------------------------------------------------------------------
29 ;; We want to delay setting frame parameters until the faces are setup
30
31 ;; Mac can't handle ~ prefix in file names
32 ;(setq auto-save-list-file-prefix ".saves-")
33
34 (setq frame-creation-function 'x-create-frame-with-faces)
35
36 ;; for debugging
37 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
38
39 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
40
41 (global-set-key
42 [vertical-scroll-bar down-mouse-1]
43 'mac-handle-scroll-bar-event)
44
45 (global-unset-key [vertical-scroll-bar drag-mouse-1])
46 (global-unset-key [vertical-scroll-bar mouse-1])
47
48 (defun mac-handle-scroll-bar-event (event)
49 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
50 (interactive "e")
51 (let* ((position (event-start event))
52 (window (nth 0 position))
53 (bar-part (nth 4 position)))
54 (select-window window)
55 (cond
56 ((eq bar-part 'up)
57 (goto-char (window-start window))
58 (mac-scroll-down-line))
59 ((eq bar-part 'above-handle)
60 (mac-scroll-down))
61 ((eq bar-part 'handle)
62 (scroll-bar-drag event))
63 ((eq bar-part 'below-handle)
64 (mac-scroll-up))
65 ((eq bar-part 'down)
66 (goto-char (window-start window))
67 (mac-scroll-up-line)))))
68
69 (defun mac-scroll-down ()
70 (track-mouse
71 (while (not (eq (car-safe (read-event)) 'mouse-1)) nil)
72 (scroll-down)))
73
74 (defun mac-scroll-down-line ()
75 (track-mouse
76 (while (not (eq (car-safe (read-event)) 'mouse-1)) nil)
77 (scroll-down 1)))
78
79 (defun mac-scroll-up ()
80 (track-mouse
81 (while (not (eq (car-safe (read-event)) 'mouse-1)) nil)
82 (scroll-up)))
83
84 (defun mac-scroll-up-line ()
85 (track-mouse
86 (while (not (eq (car-safe (read-event)) 'mouse-1)) nil)
87 (scroll-up 1)))
88
89 (defun xw-defined-colors (&optional frame)
90 "Internal function called by `defined-colors', which see."
91 (or frame (setq frame (selected-frame)))
92 (let ((all-colors x-colors)
93 (this-color nil)
94 (defined-colors nil))
95 (while all-colors
96 (setq this-color (car all-colors)
97 all-colors (cdr all-colors))
98 (and (color-supported-p this-color frame t)
99 (setq defined-colors (cons this-color defined-colors))))
100 defined-colors))
101
102 ;; Don't have this yet.
103 (fset 'x-get-resource 'ignore)
104
105 ;; This variable specifies the Unix program to call (as a process) to
106 ;; deteremine the amount of free space on a file system (defaults to
107 ;; df). If it is not set to nil, ls-lisp will not work correctly
108 ;; unless an external application df is implemented on the Mac.
109 (require 'dired)
110
111 (setq dired-free-space-program nil)
112
113 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
114 ;; expand filenames Note no subprocess for the shell is actually
115 ;; started (see run_mac_command in sysdep.c).
116 (setq shell-file-name "sh")
117
118 ;; X Window emulation in macterm.c is not complete enough to start a
119 ;; frame without a minibuffer properly. Call this to tell ediff
120 ;; library to use a single frame.
121 (ediff-toggle-multiframe)
122
123 ;; Setup to use the Mac clipboard. The functions mac-cut-function and
124 ;; mac-paste-function are defined in mac.c.
125 (set-selection-coding-system 'compound-text-mac)
126
127 (setq interprogram-cut-function
128 '(lambda (str push)
129 (mac-cut-function
130 (encode-coding-string str selection-coding-system t) push)))
131
132 (setq interprogram-paste-function
133 '(lambda ()
134 (decode-coding-string
135 (mac-paste-function) selection-coding-system t)))
136
137 (defun mac-drag-n-drop (event)
138 "Edit the files listed in the drag-n-drop event.\n\
139 Switch to a buffer editing the last file dropped."
140 (interactive "e")
141 (save-excursion
142 ;; Make sure the drop target has positive co-ords
143 ;; before setting the selected frame - otherwise it
144 ;; won't work. <skx@tardis.ed.ac.uk>
145 (let* ((window (posn-window (event-start event)))
146 (coords (posn-x-y (event-start event)))
147 (x (car coords))
148 (y (cdr coords)))
149 (if (and (> x 0) (> y 0))
150 (set-frame-selected-window nil window))
151 (mapcar 'find-file (car (cdr (cdr event)))))
152 (raise-frame)
153 (recenter)))
154
155 (global-set-key [drag-n-drop] 'mac-drag-n-drop)
156
157 ;; By checking whether the variable mac-ready-for-drag-n-drop has been
158 ;; defined, the event loop in macterm.c can be informed that it can
159 ;; now receive Finder drag and drop events. Files dropped onto the
160 ;; Emacs application icon can only be processed when the initial frame
161 ;; has been created: this is where the files should be opened.
162 (add-hook 'after-init-hook
163 '(lambda ()
164 (defvar mac-ready-for-drag-n-drop t)))
165
166 ; Define constant values to be set to mac-keyboard-text-encoding
167 (defconst kTextEncodingMacRoman 0)
168 (defconst kTextEncodingISOLatin1 513 "0x201")
169 (defconst kTextEncodingISOLatin2 514 "0x202")
170
171
172 (define-ccl-program ccl-encode-mac-roman-font
173 `(0
174 (if (r0 != ,(charset-id 'ascii))
175 (if (r0 == ,(charset-id 'latin-iso8859-1))
176 (translate-character mac-roman-encoder r0 r1)
177 ((r1 <<= 7)
178 (r1 |= r2)
179 (translate-character mac-roman-encoder r0 r1)))))
180 "CCL program for Mac Roman font")
181
182 (setq font-ccl-encoder-alist
183 (cons '("mac-roman" . ccl-encode-mac-roman-font)
184 font-ccl-encoder-alist))
185
186 ;; Create a fontset that uses mac-roman font. With this fontset,
187 ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
188 ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
189
190 (if (fboundp 'new-fontset)
191 (progn
192 (create-fontset-from-fontset-spec
193 "-etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-mac,
194 ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman")
195 (let ((monaco-font '("monaco" . "mac-roman")))
196 (map-char-table
197 (function
198 (lambda (key val)
199 (or (generic-char-p key)
200 (memq (char-charset key)
201 '(ascii eight-bit-control eight-bit-graphic))
202 (set-fontset-font "fontset-mac" key monaco-font))))
203 (get 'mac-roman-encoder 'translation-table)))))
204
205 ;; To display filenames in Chinese or Japanese, replace mac-roman with
206 ;; big5 or sjis
207 (setq file-name-coding-system 'mac-roman)
208
209 ;; (prefer-coding-system 'mac-roman)
210
211 ;;
212 ;; Available colors
213 ;;
214
215 (defvar x-colors '("LightGreen"
216 "light green"
217 "DarkRed"
218 "dark red"
219 "DarkMagenta"
220 "dark magenta"
221 "DarkCyan"
222 "dark cyan"
223 "DarkBlue"
224 "dark blue"
225 "DarkGray"
226 "dark gray"
227 "DarkGrey"
228 "dark grey"
229 "grey100"
230 "gray100"
231 "grey99"
232 "gray99"
233 "grey98"
234 "gray98"
235 "grey97"
236 "gray97"
237 "grey96"
238 "gray96"
239 "grey95"
240 "gray95"
241 "grey94"
242 "gray94"
243 "grey93"
244 "gray93"
245 "grey92"
246 "gray92"
247 "grey91"
248 "gray91"
249 "grey90"
250 "gray90"
251 "grey89"
252 "gray89"
253 "grey88"
254 "gray88"
255 "grey87"
256 "gray87"
257 "grey86"
258 "gray86"
259 "grey85"
260 "gray85"
261 "grey84"
262 "gray84"
263 "grey83"
264 "gray83"
265 "grey82"
266 "gray82"
267 "grey81"
268 "gray81"
269 "grey80"
270 "gray80"
271 "grey79"
272 "gray79"
273 "grey78"
274 "gray78"
275 "grey77"
276 "gray77"
277 "grey76"
278 "gray76"
279 "grey75"
280 "gray75"
281 "grey74"
282 "gray74"
283 "grey73"
284 "gray73"
285 "grey72"
286 "gray72"
287 "grey71"
288 "gray71"
289 "grey70"
290 "gray70"
291 "grey69"
292 "gray69"
293 "grey68"
294 "gray68"
295 "grey67"
296 "gray67"
297 "grey66"
298 "gray66"
299 "grey65"
300 "gray65"
301 "grey64"
302 "gray64"
303 "grey63"
304 "gray63"
305 "grey62"
306 "gray62"
307 "grey61"
308 "gray61"
309 "grey60"
310 "gray60"
311 "grey59"
312 "gray59"
313 "grey58"
314 "gray58"
315 "grey57"
316 "gray57"
317 "grey56"
318 "gray56"
319 "grey55"
320 "gray55"
321 "grey54"
322 "gray54"
323 "grey53"
324 "gray53"
325 "grey52"
326 "gray52"
327 "grey51"
328 "gray51"
329 "grey50"
330 "gray50"
331 "grey49"
332 "gray49"
333 "grey48"
334 "gray48"
335 "grey47"
336 "gray47"
337 "grey46"
338 "gray46"
339 "grey45"
340 "gray45"
341 "grey44"
342 "gray44"
343 "grey43"
344 "gray43"
345 "grey42"
346 "gray42"
347 "grey41"
348 "gray41"
349 "grey40"
350 "gray40"
351 "grey39"
352 "gray39"
353 "grey38"
354 "gray38"
355 "grey37"
356 "gray37"
357 "grey36"
358 "gray36"
359 "grey35"
360 "gray35"
361 "grey34"
362 "gray34"
363 "grey33"
364 "gray33"
365 "grey32"
366 "gray32"
367 "grey31"
368 "gray31"
369 "grey30"
370 "gray30"
371 "grey29"
372 "gray29"
373 "grey28"
374 "gray28"
375 "grey27"
376 "gray27"
377 "grey26"
378 "gray26"
379 "grey25"
380 "gray25"
381 "grey24"
382 "gray24"
383 "grey23"
384 "gray23"
385 "grey22"
386 "gray22"
387 "grey21"
388 "gray21"
389 "grey20"
390 "gray20"
391 "grey19"
392 "gray19"
393 "grey18"
394 "gray18"
395 "grey17"
396 "gray17"
397 "grey16"
398 "gray16"
399 "grey15"
400 "gray15"
401 "grey14"
402 "gray14"
403 "grey13"
404 "gray13"
405 "grey12"
406 "gray12"
407 "grey11"
408 "gray11"
409 "grey10"
410 "gray10"
411 "grey9"
412 "gray9"
413 "grey8"
414 "gray8"
415 "grey7"
416 "gray7"
417 "grey6"
418 "gray6"
419 "grey5"
420 "gray5"
421 "grey4"
422 "gray4"
423 "grey3"
424 "gray3"
425 "grey2"
426 "gray2"
427 "grey1"
428 "gray1"
429 "grey0"
430 "gray0"
431 "thistle4"
432 "thistle3"
433 "thistle2"
434 "thistle1"
435 "MediumPurple4"
436 "MediumPurple3"
437 "MediumPurple2"
438 "MediumPurple1"
439 "purple4"
440 "purple3"
441 "purple2"
442 "purple1"
443 "DarkOrchid4"
444 "DarkOrchid3"
445 "DarkOrchid2"
446 "DarkOrchid1"
447 "MediumOrchid4"
448 "MediumOrchid3"
449 "MediumOrchid2"
450 "MediumOrchid1"
451 "plum4"
452 "plum3"
453 "plum2"
454 "plum1"
455 "orchid4"
456 "orchid3"
457 "orchid2"
458 "orchid1"
459 "magenta4"
460 "magenta3"
461 "magenta2"
462 "magenta1"
463 "VioletRed4"
464 "VioletRed3"
465 "VioletRed2"
466 "VioletRed1"
467 "maroon4"
468 "maroon3"
469 "maroon2"
470 "maroon1"
471 "PaleVioletRed4"
472 "PaleVioletRed3"
473 "PaleVioletRed2"
474 "PaleVioletRed1"
475 "LightPink4"
476 "LightPink3"
477 "LightPink2"
478 "LightPink1"
479 "pink4"
480 "pink3"
481 "pink2"
482 "pink1"
483 "HotPink4"
484 "HotPink3"
485 "HotPink2"
486 "HotPink1"
487 "DeepPink4"
488 "DeepPink3"
489 "DeepPink2"
490 "DeepPink1"
491 "red4"
492 "red3"
493 "red2"
494 "red1"
495 "OrangeRed4"
496 "OrangeRed3"
497 "OrangeRed2"
498 "OrangeRed1"
499 "tomato4"
500 "tomato3"
501 "tomato2"
502 "tomato1"
503 "coral4"
504 "coral3"
505 "coral2"
506 "coral1"
507 "DarkOrange4"
508 "DarkOrange3"
509 "DarkOrange2"
510 "DarkOrange1"
511 "orange4"
512 "orange3"
513 "orange2"
514 "orange1"
515 "LightSalmon4"
516 "LightSalmon3"
517 "LightSalmon2"
518 "LightSalmon1"
519 "salmon4"
520 "salmon3"
521 "salmon2"
522 "salmon1"
523 "brown4"
524 "brown3"
525 "brown2"
526 "brown1"
527 "firebrick4"
528 "firebrick3"
529 "firebrick2"
530 "firebrick1"
531 "chocolate4"
532 "chocolate3"
533 "chocolate2"
534 "chocolate1"
535 "tan4"
536 "tan3"
537 "tan2"
538 "tan1"
539 "wheat4"
540 "wheat3"
541 "wheat2"
542 "wheat1"
543 "burlywood4"
544 "burlywood3"
545 "burlywood2"
546 "burlywood1"
547 "sienna4"
548 "sienna3"
549 "sienna2"
550 "sienna1"
551 "IndianRed4"
552 "IndianRed3"
553 "IndianRed2"
554 "IndianRed1"
555 "RosyBrown4"
556 "RosyBrown3"
557 "RosyBrown2"
558 "RosyBrown1"
559 "DarkGoldenrod4"
560 "DarkGoldenrod3"
561 "DarkGoldenrod2"
562 "DarkGoldenrod1"
563 "goldenrod4"
564 "goldenrod3"
565 "goldenrod2"
566 "goldenrod1"
567 "gold4"
568 "gold3"
569 "gold2"
570 "gold1"
571 "yellow4"
572 "yellow3"
573 "yellow2"
574 "yellow1"
575 "LightYellow4"
576 "LightYellow3"
577 "LightYellow2"
578 "LightYellow1"
579 "LightGoldenrod4"
580 "LightGoldenrod3"
581 "LightGoldenrod2"
582 "LightGoldenrod1"
583 "khaki4"
584 "khaki3"
585 "khaki2"
586 "khaki1"
587 "DarkOliveGreen4"
588 "DarkOliveGreen3"
589 "DarkOliveGreen2"
590 "DarkOliveGreen1"
591 "OliveDrab4"
592 "OliveDrab3"
593 "OliveDrab2"
594 "OliveDrab1"
595 "chartreuse4"
596 "chartreuse3"
597 "chartreuse2"
598 "chartreuse1"
599 "green4"
600 "green3"
601 "green2"
602 "green1"
603 "SpringGreen4"
604 "SpringGreen3"
605 "SpringGreen2"
606 "SpringGreen1"
607 "PaleGreen4"
608 "PaleGreen3"
609 "PaleGreen2"
610 "PaleGreen1"
611 "SeaGreen4"
612 "SeaGreen3"
613 "SeaGreen2"
614 "SeaGreen1"
615 "DarkSeaGreen4"
616 "DarkSeaGreen3"
617 "DarkSeaGreen2"
618 "DarkSeaGreen1"
619 "aquamarine4"
620 "aquamarine3"
621 "aquamarine2"
622 "aquamarine1"
623 "DarkSlateGray4"
624 "DarkSlateGray3"
625 "DarkSlateGray2"
626 "DarkSlateGray1"
627 "cyan4"
628 "cyan3"
629 "cyan2"
630 "cyan1"
631 "turquoise4"
632 "turquoise3"
633 "turquoise2"
634 "turquoise1"
635 "CadetBlue4"
636 "CadetBlue3"
637 "CadetBlue2"
638 "CadetBlue1"
639 "PaleTurquoise4"
640 "PaleTurquoise3"
641 "PaleTurquoise2"
642 "PaleTurquoise1"
643 "LightCyan4"
644 "LightCyan3"
645 "LightCyan2"
646 "LightCyan1"
647 "LightBlue4"
648 "LightBlue3"
649 "LightBlue2"
650 "LightBlue1"
651 "LightSteelBlue4"
652 "LightSteelBlue3"
653 "LightSteelBlue2"
654 "LightSteelBlue1"
655 "SlateGray4"
656 "SlateGray3"
657 "SlateGray2"
658 "SlateGray1"
659 "LightSkyBlue4"
660 "LightSkyBlue3"
661 "LightSkyBlue2"
662 "LightSkyBlue1"
663 "SkyBlue4"
664 "SkyBlue3"
665 "SkyBlue2"
666 "SkyBlue1"
667 "DeepSkyBlue4"
668 "DeepSkyBlue3"
669 "DeepSkyBlue2"
670 "DeepSkyBlue1"
671 "SteelBlue4"
672 "SteelBlue3"
673 "SteelBlue2"
674 "SteelBlue1"
675 "DodgerBlue4"
676 "DodgerBlue3"
677 "DodgerBlue2"
678 "DodgerBlue1"
679 "blue4"
680 "blue3"
681 "blue2"
682 "blue1"
683 "RoyalBlue4"
684 "RoyalBlue3"
685 "RoyalBlue2"
686 "RoyalBlue1"
687 "SlateBlue4"
688 "SlateBlue3"
689 "SlateBlue2"
690 "SlateBlue1"
691 "azure4"
692 "azure3"
693 "azure2"
694 "azure1"
695 "MistyRose4"
696 "MistyRose3"
697 "MistyRose2"
698 "MistyRose1"
699 "LavenderBlush4"
700 "LavenderBlush3"
701 "LavenderBlush2"
702 "LavenderBlush1"
703 "honeydew4"
704 "honeydew3"
705 "honeydew2"
706 "honeydew1"
707 "ivory4"
708 "ivory3"
709 "ivory2"
710 "ivory1"
711 "cornsilk4"
712 "cornsilk3"
713 "cornsilk2"
714 "cornsilk1"
715 "LemonChiffon4"
716 "LemonChiffon3"
717 "LemonChiffon2"
718 "LemonChiffon1"
719 "NavajoWhite4"
720 "NavajoWhite3"
721 "NavajoWhite2"
722 "NavajoWhite1"
723 "PeachPuff4"
724 "PeachPuff3"
725 "PeachPuff2"
726 "PeachPuff1"
727 "bisque4"
728 "bisque3"
729 "bisque2"
730 "bisque1"
731 "AntiqueWhite4"
732 "AntiqueWhite3"
733 "AntiqueWhite2"
734 "AntiqueWhite1"
735 "seashell4"
736 "seashell3"
737 "seashell2"
738 "seashell1"
739 "snow4"
740 "snow3"
741 "snow2"
742 "snow1"
743 "thistle"
744 "MediumPurple"
745 "medium purple"
746 "purple"
747 "BlueViolet"
748 "blue violet"
749 "DarkViolet"
750 "dark violet"
751 "DarkOrchid"
752 "dark orchid"
753 "MediumOrchid"
754 "medium orchid"
755 "orchid"
756 "plum"
757 "violet"
758 "magenta"
759 "VioletRed"
760 "violet red"
761 "MediumVioletRed"
762 "medium violet red"
763 "maroon"
764 "PaleVioletRed"
765 "pale violet red"
766 "LightPink"
767 "light pink"
768 "pink"
769 "DeepPink"
770 "deep pink"
771 "HotPink"
772 "hot pink"
773 "red"
774 "OrangeRed"
775 "orange red"
776 "tomato"
777 "LightCoral"
778 "light coral"
779 "coral"
780 "DarkOrange"
781 "dark orange"
782 "orange"
783 "LightSalmon"
784 "light salmon"
785 "salmon"
786 "DarkSalmon"
787 "dark salmon"
788 "brown"
789 "firebrick"
790 "chocolate"
791 "tan"
792 "SandyBrown"
793 "sandy brown"
794 "wheat"
795 "beige"
796 "burlywood"
797 "peru"
798 "sienna"
799 "SaddleBrown"
800 "saddle brown"
801 "IndianRed"
802 "indian red"
803 "RosyBrown"
804 "rosy brown"
805 "DarkGoldenrod"
806 "dark goldenrod"
807 "goldenrod"
808 "LightGoldenrod"
809 "light goldenrod"
810 "gold"
811 "yellow"
812 "LightYellow"
813 "light yellow"
814 "LightGoldenrodYellow"
815 "light goldenrod yellow"
816 "PaleGoldenrod"
817 "pale goldenrod"
818 "khaki"
819 "DarkKhaki"
820 "dark khaki"
821 "OliveDrab"
822 "olive drab"
823 "ForestGreen"
824 "forest green"
825 "YellowGreen"
826 "yellow green"
827 "LimeGreen"
828 "lime green"
829 "GreenYellow"
830 "green yellow"
831 "MediumSpringGreen"
832 "medium spring green"
833 "chartreuse"
834 "green"
835 "LawnGreen"
836 "lawn green"
837 "SpringGreen"
838 "spring green"
839 "PaleGreen"
840 "pale green"
841 "LightSeaGreen"
842 "light sea green"
843 "MediumSeaGreen"
844 "medium sea green"
845 "SeaGreen"
846 "sea green"
847 "DarkSeaGreen"
848 "dark sea green"
849 "DarkOliveGreen"
850 "dark olive green"
851 "DarkGreen"
852 "dark green"
853 "aquamarine"
854 "MediumAquamarine"
855 "medium aquamarine"
856 "CadetBlue"
857 "cadet blue"
858 "LightCyan"
859 "light cyan"
860 "cyan"
861 "turquoise"
862 "MediumTurquoise"
863 "medium turquoise"
864 "DarkTurquoise"
865 "dark turquoise"
866 "PaleTurquoise"
867 "pale turquoise"
868 "PowderBlue"
869 "powder blue"
870 "LightBlue"
871 "light blue"
872 "LightSteelBlue"
873 "light steel blue"
874 "SteelBlue"
875 "steel blue"
876 "LightSkyBlue"
877 "light sky blue"
878 "SkyBlue"
879 "sky blue"
880 "DeepSkyBlue"
881 "deep sky blue"
882 "DodgerBlue"
883 "dodger blue"
884 "blue"
885 "RoyalBlue"
886 "royal blue"
887 "MediumBlue"
888 "medium blue"
889 "LightSlateBlue"
890 "light slate blue"
891 "MediumSlateBlue"
892 "medium slate blue"
893 "SlateBlue"
894 "slate blue"
895 "DarkSlateBlue"
896 "dark slate blue"
897 "CornflowerBlue"
898 "cornflower blue"
899 "NavyBlue"
900 "navy blue"
901 "navy"
902 "MidnightBlue"
903 "midnight blue"
904 "LightGray"
905 "light gray"
906 "LightGrey"
907 "light grey"
908 "grey"
909 "gray"
910 "LightSlateGrey"
911 "light slate grey"
912 "LightSlateGray"
913 "light slate gray"
914 "SlateGrey"
915 "slate grey"
916 "SlateGray"
917 "slate gray"
918 "DimGrey"
919 "dim grey"
920 "DimGray"
921 "dim gray"
922 "DarkSlateGrey"
923 "dark slate grey"
924 "DarkSlateGray"
925 "dark slate gray"
926 "black"
927 "white"
928 "MistyRose"
929 "misty rose"
930 "LavenderBlush"
931 "lavender blush"
932 "lavender"
933 "AliceBlue"
934 "alice blue"
935 "azure"
936 "MintCream"
937 "mint cream"
938 "honeydew"
939 "seashell"
940 "LemonChiffon"
941 "lemon chiffon"
942 "ivory"
943 "cornsilk"
944 "moccasin"
945 "NavajoWhite"
946 "navajo white"
947 "PeachPuff"
948 "peach puff"
949 "bisque"
950 "BlanchedAlmond"
951 "blanched almond"
952 "PapayaWhip"
953 "papaya whip"
954 "AntiqueWhite"
955 "antique white"
956 "linen"
957 "OldLace"
958 "old lace"
959 "FloralWhite"
960 "floral white"
961 "gainsboro"
962 "WhiteSmoke"
963 "white smoke"
964 "GhostWhite"
965 "ghost white"
966 "snow")
967 "The list of X colors from the `rgb.txt' file.
968 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
969
970 ;;; mac-win.el ends here