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