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