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