(mac-ae-reopen-application): New function.
[emacs.git] / lisp / term / mac-win.el
blobc9c13c7814e5b7c217b796b68e6c4476f6206adf
1 ;;; mac-win.el --- parse switches controlling interface with Mac window system -*-coding: iso-2022-7bit;-*-
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Andrew Choi <akochoi@mac.com>
7 ;; Keywords: terminals
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;; Mac-win.el: this file is loaded from ../lisp/startup.el when it recognizes
29 ;; that Mac windows are to be used. Command line switches are parsed and those
30 ;; pertaining to Mac are processed and removed from the command line. The
31 ;; Mac display is opened and hooks are set for popping up the initial window.
33 ;; startup.el will then examine startup files, and eventually call the hooks
34 ;; which create the first window(s).
36 ;;; Code:
38 ;; These are the standard X switches from the Xt Initialize.c file of
39 ;; Release 4.
41 ;; Command line Resource Manager string
43 ;; +rv *reverseVideo
44 ;; +synchronous *synchronous
45 ;; -background *background
46 ;; -bd *borderColor
47 ;; -bg *background
48 ;; -bordercolor *borderColor
49 ;; -borderwidth .borderWidth
50 ;; -bw .borderWidth
51 ;; -display .display
52 ;; -fg *foreground
53 ;; -fn *font
54 ;; -font *font
55 ;; -foreground *foreground
56 ;; -geometry .geometry
57 ;; -iconic .iconic
58 ;; -name .name
59 ;; -reverse *reverseVideo
60 ;; -rv *reverseVideo
61 ;; -selectionTimeout .selectionTimeout
62 ;; -synchronous *synchronous
63 ;; -xrm
65 ;; An alist of X options and the function which handles them. See
66 ;; ../startup.el.
68 (if (not (eq window-system 'mac))
69 (error "%s: Loading mac-win.el but not compiled for Mac" (invocation-name)))
71 (require 'frame)
72 (require 'mouse)
73 (require 'scroll-bar)
74 (require 'faces)
75 (require 'select)
76 (require 'menu-bar)
77 (require 'fontset)
78 (require 'dnd)
80 (defvar mac-charset-info-alist)
81 (defvar mac-service-selection)
82 (defvar mac-system-script-code)
83 (defvar mac-apple-event-map)
84 (defvar mac-font-panel-mode)
85 (defvar mac-ts-active-input-overlay)
86 (defvar x-invocation-args)
88 (defvar x-command-line-resources nil)
90 ;; Handler for switches of the form "-switch value" or "-switch".
91 (defun x-handle-switch (switch)
92 (let ((aelt (assoc switch command-line-x-option-alist)))
93 (if aelt
94 (let ((param (nth 3 aelt))
95 (value (nth 4 aelt)))
96 (if value
97 (setq default-frame-alist
98 (cons (cons param value)
99 default-frame-alist))
100 (setq default-frame-alist
101 (cons (cons param
102 (car x-invocation-args))
103 default-frame-alist)
104 x-invocation-args (cdr x-invocation-args)))))))
106 ;; Handler for switches of the form "-switch n"
107 (defun x-handle-numeric-switch (switch)
108 (let ((aelt (assoc switch command-line-x-option-alist)))
109 (if aelt
110 (let ((param (nth 3 aelt)))
111 (setq default-frame-alist
112 (cons (cons param
113 (string-to-number (car x-invocation-args)))
114 default-frame-alist)
115 x-invocation-args
116 (cdr x-invocation-args))))))
118 ;; Handle options that apply to initial frame only
119 (defun x-handle-initial-switch (switch)
120 (let ((aelt (assoc switch command-line-x-option-alist)))
121 (if aelt
122 (let ((param (nth 3 aelt))
123 (value (nth 4 aelt)))
124 (if value
125 (setq initial-frame-alist
126 (cons (cons param value)
127 initial-frame-alist))
128 (setq initial-frame-alist
129 (cons (cons param
130 (car x-invocation-args))
131 initial-frame-alist)
132 x-invocation-args (cdr x-invocation-args)))))))
134 ;; Make -iconic apply only to the initial frame!
135 (defun x-handle-iconic (switch)
136 (setq initial-frame-alist
137 (cons '(visibility . icon) initial-frame-alist)))
139 ;; Handle the -xrm option.
140 (defun x-handle-xrm-switch (switch)
141 (unless (consp x-invocation-args)
142 (error "%s: missing argument to `%s' option" (invocation-name) switch))
143 (setq x-command-line-resources
144 (if (null x-command-line-resources)
145 (car x-invocation-args)
146 (concat x-command-line-resources "\n" (car x-invocation-args))))
147 (setq x-invocation-args (cdr x-invocation-args)))
149 ;; Handle the geometry option
150 (defun x-handle-geometry (switch)
151 (let* ((geo (x-parse-geometry (car x-invocation-args)))
152 (left (assq 'left geo))
153 (top (assq 'top geo))
154 (height (assq 'height geo))
155 (width (assq 'width geo)))
156 (if (or height width)
157 (setq default-frame-alist
158 (append default-frame-alist
159 '((user-size . t))
160 (if height (list height))
161 (if width (list width)))
162 initial-frame-alist
163 (append initial-frame-alist
164 '((user-size . t))
165 (if height (list height))
166 (if width (list width)))))
167 (if (or left top)
168 (setq initial-frame-alist
169 (append initial-frame-alist
170 '((user-position . t))
171 (if left (list left))
172 (if top (list top)))))
173 (setq x-invocation-args (cdr x-invocation-args))))
175 ;; Handle the -name option. Set the variable x-resource-name
176 ;; to the option's operand; set the name of
177 ;; the initial frame, too.
178 (defun x-handle-name-switch (switch)
179 (or (consp x-invocation-args)
180 (error "%s: missing argument to `%s' option" (invocation-name) switch))
181 (setq x-resource-name (car x-invocation-args)
182 x-invocation-args (cdr x-invocation-args))
183 (setq initial-frame-alist (cons (cons 'name x-resource-name)
184 initial-frame-alist)))
186 (defvar x-display-name nil
187 "The display name specifying server and frame.")
189 (defun x-handle-display (switch)
190 (setq x-display-name (car x-invocation-args)
191 x-invocation-args (cdr x-invocation-args)))
193 (defun x-handle-args (args)
194 "Process the X-related command line options in ARGS.
195 This is done before the user's startup file is loaded. They are copied to
196 `x-invocation-args', from which the X-related things are extracted, first
197 the switch (e.g., \"-fg\") in the following code, and possible values
198 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
199 This function returns ARGS minus the arguments that have been processed."
200 ;; We use ARGS to accumulate the args that we don't handle here, to return.
201 (setq x-invocation-args args
202 args nil)
203 (while (and x-invocation-args
204 (not (equal (car x-invocation-args) "--")))
205 (let* ((this-switch (car x-invocation-args))
206 (orig-this-switch this-switch)
207 completion argval aelt handler)
208 (setq x-invocation-args (cdr x-invocation-args))
209 ;; Check for long options with attached arguments
210 ;; and separate out the attached option argument into argval.
211 (if (string-match "^--[^=]*=" this-switch)
212 (setq argval (substring this-switch (match-end 0))
213 this-switch (substring this-switch 0 (1- (match-end 0)))))
214 ;; Complete names of long options.
215 (if (string-match "^--" this-switch)
216 (progn
217 (setq completion (try-completion this-switch command-line-x-option-alist))
218 (if (eq completion t)
219 ;; Exact match for long option.
221 (if (stringp completion)
222 (let ((elt (assoc completion command-line-x-option-alist)))
223 ;; Check for abbreviated long option.
224 (or elt
225 (error "Option `%s' is ambiguous" this-switch))
226 (setq this-switch completion))))))
227 (setq aelt (assoc this-switch command-line-x-option-alist))
228 (if aelt (setq handler (nth 2 aelt)))
229 (if handler
230 (if argval
231 (let ((x-invocation-args
232 (cons argval x-invocation-args)))
233 (funcall handler this-switch))
234 (funcall handler this-switch))
235 (setq args (cons orig-this-switch args)))))
236 (nconc (nreverse args) x-invocation-args))
240 ;; Standard Mac cursor shapes
243 (defconst mac-pointer-arrow 0)
244 (defconst mac-pointer-copy-arrow 1)
245 (defconst mac-pointer-alias-arrow 2)
246 (defconst mac-pointer-contextual-menu-arrow 3)
247 (defconst mac-pointer-I-beam 4)
248 (defconst mac-pointer-cross 5)
249 (defconst mac-pointer-plus 6)
250 (defconst mac-pointer-watch 7)
251 (defconst mac-pointer-closed-hand 8)
252 (defconst mac-pointer-open-hand 9)
253 (defconst mac-pointer-pointing-hand 10)
254 (defconst mac-pointer-counting-up-hand 11)
255 (defconst mac-pointer-counting-down-hand 12)
256 (defconst mac-pointer-counting-up-and-down-hand 13)
257 (defconst mac-pointer-spinning 14)
258 (defconst mac-pointer-resize-left 15)
259 (defconst mac-pointer-resize-right 16)
260 (defconst mac-pointer-resize-left-right 17)
261 ;; Mac OS X 10.2 and later
262 (defconst mac-pointer-not-allowed 18)
263 ;; Mac OS X 10.3 and later
264 (defconst mac-pointer-resize-up 19)
265 (defconst mac-pointer-resize-down 20)
266 (defconst mac-pointer-resize-up-down 21)
267 (defconst mac-pointer-poof 22)
270 ;; Standard X cursor shapes that have Mac counterparts
273 (defconst x-pointer-left-ptr mac-pointer-arrow)
274 (defconst x-pointer-xterm mac-pointer-I-beam)
275 (defconst x-pointer-crosshair mac-pointer-cross)
276 (defconst x-pointer-plus mac-pointer-plus)
277 (defconst x-pointer-watch mac-pointer-watch)
278 (defconst x-pointer-hand2 mac-pointer-pointing-hand)
279 (defconst x-pointer-left-side mac-pointer-resize-left)
280 (defconst x-pointer-right-side mac-pointer-resize-right)
281 (defconst x-pointer-sb-h-double-arrow mac-pointer-resize-left-right)
282 (defconst x-pointer-top-side mac-pointer-resize-up)
283 (defconst x-pointer-bottom-side mac-pointer-resize-down)
284 (defconst x-pointer-sb-v-double-arrow mac-pointer-resize-up-down)
288 ;; Available colors
291 (defvar x-colors '("LightGreen"
292 "light green"
293 "DarkRed"
294 "dark red"
295 "DarkMagenta"
296 "dark magenta"
297 "DarkCyan"
298 "dark cyan"
299 "DarkBlue"
300 "dark blue"
301 "DarkGray"
302 "dark gray"
303 "DarkGrey"
304 "dark grey"
305 "grey100"
306 "gray100"
307 "grey99"
308 "gray99"
309 "grey98"
310 "gray98"
311 "grey97"
312 "gray97"
313 "grey96"
314 "gray96"
315 "grey95"
316 "gray95"
317 "grey94"
318 "gray94"
319 "grey93"
320 "gray93"
321 "grey92"
322 "gray92"
323 "grey91"
324 "gray91"
325 "grey90"
326 "gray90"
327 "grey89"
328 "gray89"
329 "grey88"
330 "gray88"
331 "grey87"
332 "gray87"
333 "grey86"
334 "gray86"
335 "grey85"
336 "gray85"
337 "grey84"
338 "gray84"
339 "grey83"
340 "gray83"
341 "grey82"
342 "gray82"
343 "grey81"
344 "gray81"
345 "grey80"
346 "gray80"
347 "grey79"
348 "gray79"
349 "grey78"
350 "gray78"
351 "grey77"
352 "gray77"
353 "grey76"
354 "gray76"
355 "grey75"
356 "gray75"
357 "grey74"
358 "gray74"
359 "grey73"
360 "gray73"
361 "grey72"
362 "gray72"
363 "grey71"
364 "gray71"
365 "grey70"
366 "gray70"
367 "grey69"
368 "gray69"
369 "grey68"
370 "gray68"
371 "grey67"
372 "gray67"
373 "grey66"
374 "gray66"
375 "grey65"
376 "gray65"
377 "grey64"
378 "gray64"
379 "grey63"
380 "gray63"
381 "grey62"
382 "gray62"
383 "grey61"
384 "gray61"
385 "grey60"
386 "gray60"
387 "grey59"
388 "gray59"
389 "grey58"
390 "gray58"
391 "grey57"
392 "gray57"
393 "grey56"
394 "gray56"
395 "grey55"
396 "gray55"
397 "grey54"
398 "gray54"
399 "grey53"
400 "gray53"
401 "grey52"
402 "gray52"
403 "grey51"
404 "gray51"
405 "grey50"
406 "gray50"
407 "grey49"
408 "gray49"
409 "grey48"
410 "gray48"
411 "grey47"
412 "gray47"
413 "grey46"
414 "gray46"
415 "grey45"
416 "gray45"
417 "grey44"
418 "gray44"
419 "grey43"
420 "gray43"
421 "grey42"
422 "gray42"
423 "grey41"
424 "gray41"
425 "grey40"
426 "gray40"
427 "grey39"
428 "gray39"
429 "grey38"
430 "gray38"
431 "grey37"
432 "gray37"
433 "grey36"
434 "gray36"
435 "grey35"
436 "gray35"
437 "grey34"
438 "gray34"
439 "grey33"
440 "gray33"
441 "grey32"
442 "gray32"
443 "grey31"
444 "gray31"
445 "grey30"
446 "gray30"
447 "grey29"
448 "gray29"
449 "grey28"
450 "gray28"
451 "grey27"
452 "gray27"
453 "grey26"
454 "gray26"
455 "grey25"
456 "gray25"
457 "grey24"
458 "gray24"
459 "grey23"
460 "gray23"
461 "grey22"
462 "gray22"
463 "grey21"
464 "gray21"
465 "grey20"
466 "gray20"
467 "grey19"
468 "gray19"
469 "grey18"
470 "gray18"
471 "grey17"
472 "gray17"
473 "grey16"
474 "gray16"
475 "grey15"
476 "gray15"
477 "grey14"
478 "gray14"
479 "grey13"
480 "gray13"
481 "grey12"
482 "gray12"
483 "grey11"
484 "gray11"
485 "grey10"
486 "gray10"
487 "grey9"
488 "gray9"
489 "grey8"
490 "gray8"
491 "grey7"
492 "gray7"
493 "grey6"
494 "gray6"
495 "grey5"
496 "gray5"
497 "grey4"
498 "gray4"
499 "grey3"
500 "gray3"
501 "grey2"
502 "gray2"
503 "grey1"
504 "gray1"
505 "grey0"
506 "gray0"
507 "thistle4"
508 "thistle3"
509 "thistle2"
510 "thistle1"
511 "MediumPurple4"
512 "MediumPurple3"
513 "MediumPurple2"
514 "MediumPurple1"
515 "purple4"
516 "purple3"
517 "purple2"
518 "purple1"
519 "DarkOrchid4"
520 "DarkOrchid3"
521 "DarkOrchid2"
522 "DarkOrchid1"
523 "MediumOrchid4"
524 "MediumOrchid3"
525 "MediumOrchid2"
526 "MediumOrchid1"
527 "plum4"
528 "plum3"
529 "plum2"
530 "plum1"
531 "orchid4"
532 "orchid3"
533 "orchid2"
534 "orchid1"
535 "magenta4"
536 "magenta3"
537 "magenta2"
538 "magenta1"
539 "VioletRed4"
540 "VioletRed3"
541 "VioletRed2"
542 "VioletRed1"
543 "maroon4"
544 "maroon3"
545 "maroon2"
546 "maroon1"
547 "PaleVioletRed4"
548 "PaleVioletRed3"
549 "PaleVioletRed2"
550 "PaleVioletRed1"
551 "LightPink4"
552 "LightPink3"
553 "LightPink2"
554 "LightPink1"
555 "pink4"
556 "pink3"
557 "pink2"
558 "pink1"
559 "HotPink4"
560 "HotPink3"
561 "HotPink2"
562 "HotPink1"
563 "DeepPink4"
564 "DeepPink3"
565 "DeepPink2"
566 "DeepPink1"
567 "red4"
568 "red3"
569 "red2"
570 "red1"
571 "OrangeRed4"
572 "OrangeRed3"
573 "OrangeRed2"
574 "OrangeRed1"
575 "tomato4"
576 "tomato3"
577 "tomato2"
578 "tomato1"
579 "coral4"
580 "coral3"
581 "coral2"
582 "coral1"
583 "DarkOrange4"
584 "DarkOrange3"
585 "DarkOrange2"
586 "DarkOrange1"
587 "orange4"
588 "orange3"
589 "orange2"
590 "orange1"
591 "LightSalmon4"
592 "LightSalmon3"
593 "LightSalmon2"
594 "LightSalmon1"
595 "salmon4"
596 "salmon3"
597 "salmon2"
598 "salmon1"
599 "brown4"
600 "brown3"
601 "brown2"
602 "brown1"
603 "firebrick4"
604 "firebrick3"
605 "firebrick2"
606 "firebrick1"
607 "chocolate4"
608 "chocolate3"
609 "chocolate2"
610 "chocolate1"
611 "tan4"
612 "tan3"
613 "tan2"
614 "tan1"
615 "wheat4"
616 "wheat3"
617 "wheat2"
618 "wheat1"
619 "burlywood4"
620 "burlywood3"
621 "burlywood2"
622 "burlywood1"
623 "sienna4"
624 "sienna3"
625 "sienna2"
626 "sienna1"
627 "IndianRed4"
628 "IndianRed3"
629 "IndianRed2"
630 "IndianRed1"
631 "RosyBrown4"
632 "RosyBrown3"
633 "RosyBrown2"
634 "RosyBrown1"
635 "DarkGoldenrod4"
636 "DarkGoldenrod3"
637 "DarkGoldenrod2"
638 "DarkGoldenrod1"
639 "goldenrod4"
640 "goldenrod3"
641 "goldenrod2"
642 "goldenrod1"
643 "gold4"
644 "gold3"
645 "gold2"
646 "gold1"
647 "yellow4"
648 "yellow3"
649 "yellow2"
650 "yellow1"
651 "LightYellow4"
652 "LightYellow3"
653 "LightYellow2"
654 "LightYellow1"
655 "LightGoldenrod4"
656 "LightGoldenrod3"
657 "LightGoldenrod2"
658 "LightGoldenrod1"
659 "khaki4"
660 "khaki3"
661 "khaki2"
662 "khaki1"
663 "DarkOliveGreen4"
664 "DarkOliveGreen3"
665 "DarkOliveGreen2"
666 "DarkOliveGreen1"
667 "OliveDrab4"
668 "OliveDrab3"
669 "OliveDrab2"
670 "OliveDrab1"
671 "chartreuse4"
672 "chartreuse3"
673 "chartreuse2"
674 "chartreuse1"
675 "green4"
676 "green3"
677 "green2"
678 "green1"
679 "SpringGreen4"
680 "SpringGreen3"
681 "SpringGreen2"
682 "SpringGreen1"
683 "PaleGreen4"
684 "PaleGreen3"
685 "PaleGreen2"
686 "PaleGreen1"
687 "SeaGreen4"
688 "SeaGreen3"
689 "SeaGreen2"
690 "SeaGreen1"
691 "DarkSeaGreen4"
692 "DarkSeaGreen3"
693 "DarkSeaGreen2"
694 "DarkSeaGreen1"
695 "aquamarine4"
696 "aquamarine3"
697 "aquamarine2"
698 "aquamarine1"
699 "DarkSlateGray4"
700 "DarkSlateGray3"
701 "DarkSlateGray2"
702 "DarkSlateGray1"
703 "cyan4"
704 "cyan3"
705 "cyan2"
706 "cyan1"
707 "turquoise4"
708 "turquoise3"
709 "turquoise2"
710 "turquoise1"
711 "CadetBlue4"
712 "CadetBlue3"
713 "CadetBlue2"
714 "CadetBlue1"
715 "PaleTurquoise4"
716 "PaleTurquoise3"
717 "PaleTurquoise2"
718 "PaleTurquoise1"
719 "LightCyan4"
720 "LightCyan3"
721 "LightCyan2"
722 "LightCyan1"
723 "LightBlue4"
724 "LightBlue3"
725 "LightBlue2"
726 "LightBlue1"
727 "LightSteelBlue4"
728 "LightSteelBlue3"
729 "LightSteelBlue2"
730 "LightSteelBlue1"
731 "SlateGray4"
732 "SlateGray3"
733 "SlateGray2"
734 "SlateGray1"
735 "LightSkyBlue4"
736 "LightSkyBlue3"
737 "LightSkyBlue2"
738 "LightSkyBlue1"
739 "SkyBlue4"
740 "SkyBlue3"
741 "SkyBlue2"
742 "SkyBlue1"
743 "DeepSkyBlue4"
744 "DeepSkyBlue3"
745 "DeepSkyBlue2"
746 "DeepSkyBlue1"
747 "SteelBlue4"
748 "SteelBlue3"
749 "SteelBlue2"
750 "SteelBlue1"
751 "DodgerBlue4"
752 "DodgerBlue3"
753 "DodgerBlue2"
754 "DodgerBlue1"
755 "blue4"
756 "blue3"
757 "blue2"
758 "blue1"
759 "RoyalBlue4"
760 "RoyalBlue3"
761 "RoyalBlue2"
762 "RoyalBlue1"
763 "SlateBlue4"
764 "SlateBlue3"
765 "SlateBlue2"
766 "SlateBlue1"
767 "azure4"
768 "azure3"
769 "azure2"
770 "azure1"
771 "MistyRose4"
772 "MistyRose3"
773 "MistyRose2"
774 "MistyRose1"
775 "LavenderBlush4"
776 "LavenderBlush3"
777 "LavenderBlush2"
778 "LavenderBlush1"
779 "honeydew4"
780 "honeydew3"
781 "honeydew2"
782 "honeydew1"
783 "ivory4"
784 "ivory3"
785 "ivory2"
786 "ivory1"
787 "cornsilk4"
788 "cornsilk3"
789 "cornsilk2"
790 "cornsilk1"
791 "LemonChiffon4"
792 "LemonChiffon3"
793 "LemonChiffon2"
794 "LemonChiffon1"
795 "NavajoWhite4"
796 "NavajoWhite3"
797 "NavajoWhite2"
798 "NavajoWhite1"
799 "PeachPuff4"
800 "PeachPuff3"
801 "PeachPuff2"
802 "PeachPuff1"
803 "bisque4"
804 "bisque3"
805 "bisque2"
806 "bisque1"
807 "AntiqueWhite4"
808 "AntiqueWhite3"
809 "AntiqueWhite2"
810 "AntiqueWhite1"
811 "seashell4"
812 "seashell3"
813 "seashell2"
814 "seashell1"
815 "snow4"
816 "snow3"
817 "snow2"
818 "snow1"
819 "thistle"
820 "MediumPurple"
821 "medium purple"
822 "purple"
823 "BlueViolet"
824 "blue violet"
825 "DarkViolet"
826 "dark violet"
827 "DarkOrchid"
828 "dark orchid"
829 "MediumOrchid"
830 "medium orchid"
831 "orchid"
832 "plum"
833 "violet"
834 "magenta"
835 "VioletRed"
836 "violet red"
837 "MediumVioletRed"
838 "medium violet red"
839 "maroon"
840 "PaleVioletRed"
841 "pale violet red"
842 "LightPink"
843 "light pink"
844 "pink"
845 "DeepPink"
846 "deep pink"
847 "HotPink"
848 "hot pink"
849 "red"
850 "OrangeRed"
851 "orange red"
852 "tomato"
853 "LightCoral"
854 "light coral"
855 "coral"
856 "DarkOrange"
857 "dark orange"
858 "orange"
859 "LightSalmon"
860 "light salmon"
861 "salmon"
862 "DarkSalmon"
863 "dark salmon"
864 "brown"
865 "firebrick"
866 "chocolate"
867 "tan"
868 "SandyBrown"
869 "sandy brown"
870 "wheat"
871 "beige"
872 "burlywood"
873 "peru"
874 "sienna"
875 "SaddleBrown"
876 "saddle brown"
877 "IndianRed"
878 "indian red"
879 "RosyBrown"
880 "rosy brown"
881 "DarkGoldenrod"
882 "dark goldenrod"
883 "goldenrod"
884 "LightGoldenrod"
885 "light goldenrod"
886 "gold"
887 "yellow"
888 "LightYellow"
889 "light yellow"
890 "LightGoldenrodYellow"
891 "light goldenrod yellow"
892 "PaleGoldenrod"
893 "pale goldenrod"
894 "khaki"
895 "DarkKhaki"
896 "dark khaki"
897 "OliveDrab"
898 "olive drab"
899 "ForestGreen"
900 "forest green"
901 "YellowGreen"
902 "yellow green"
903 "LimeGreen"
904 "lime green"
905 "GreenYellow"
906 "green yellow"
907 "MediumSpringGreen"
908 "medium spring green"
909 "chartreuse"
910 "green"
911 "LawnGreen"
912 "lawn green"
913 "SpringGreen"
914 "spring green"
915 "PaleGreen"
916 "pale green"
917 "LightSeaGreen"
918 "light sea green"
919 "MediumSeaGreen"
920 "medium sea green"
921 "SeaGreen"
922 "sea green"
923 "DarkSeaGreen"
924 "dark sea green"
925 "DarkOliveGreen"
926 "dark olive green"
927 "DarkGreen"
928 "dark green"
929 "aquamarine"
930 "MediumAquamarine"
931 "medium aquamarine"
932 "CadetBlue"
933 "cadet blue"
934 "LightCyan"
935 "light cyan"
936 "cyan"
937 "turquoise"
938 "MediumTurquoise"
939 "medium turquoise"
940 "DarkTurquoise"
941 "dark turquoise"
942 "PaleTurquoise"
943 "pale turquoise"
944 "PowderBlue"
945 "powder blue"
946 "LightBlue"
947 "light blue"
948 "LightSteelBlue"
949 "light steel blue"
950 "SteelBlue"
951 "steel blue"
952 "LightSkyBlue"
953 "light sky blue"
954 "SkyBlue"
955 "sky blue"
956 "DeepSkyBlue"
957 "deep sky blue"
958 "DodgerBlue"
959 "dodger blue"
960 "blue"
961 "RoyalBlue"
962 "royal blue"
963 "MediumBlue"
964 "medium blue"
965 "LightSlateBlue"
966 "light slate blue"
967 "MediumSlateBlue"
968 "medium slate blue"
969 "SlateBlue"
970 "slate blue"
971 "DarkSlateBlue"
972 "dark slate blue"
973 "CornflowerBlue"
974 "cornflower blue"
975 "NavyBlue"
976 "navy blue"
977 "navy"
978 "MidnightBlue"
979 "midnight blue"
980 "LightGray"
981 "light gray"
982 "LightGrey"
983 "light grey"
984 "grey"
985 "gray"
986 "LightSlateGrey"
987 "light slate grey"
988 "LightSlateGray"
989 "light slate gray"
990 "SlateGrey"
991 "slate grey"
992 "SlateGray"
993 "slate gray"
994 "DimGrey"
995 "dim grey"
996 "DimGray"
997 "dim gray"
998 "DarkSlateGrey"
999 "dark slate grey"
1000 "DarkSlateGray"
1001 "dark slate gray"
1002 "black"
1003 "white"
1004 "MistyRose"
1005 "misty rose"
1006 "LavenderBlush"
1007 "lavender blush"
1008 "lavender"
1009 "AliceBlue"
1010 "alice blue"
1011 "azure"
1012 "MintCream"
1013 "mint cream"
1014 "honeydew"
1015 "seashell"
1016 "LemonChiffon"
1017 "lemon chiffon"
1018 "ivory"
1019 "cornsilk"
1020 "moccasin"
1021 "NavajoWhite"
1022 "navajo white"
1023 "PeachPuff"
1024 "peach puff"
1025 "bisque"
1026 "BlanchedAlmond"
1027 "blanched almond"
1028 "PapayaWhip"
1029 "papaya whip"
1030 "AntiqueWhite"
1031 "antique white"
1032 "linen"
1033 "OldLace"
1034 "old lace"
1035 "FloralWhite"
1036 "floral white"
1037 "gainsboro"
1038 "WhiteSmoke"
1039 "white smoke"
1040 "GhostWhite"
1041 "ghost white"
1042 "snow")
1043 "The list of X colors from the `rgb.txt' file.
1044 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1046 (defun xw-defined-colors (&optional frame)
1047 "Internal function called by `defined-colors', which see."
1048 (or frame (setq frame (selected-frame)))
1049 (let ((all-colors x-colors)
1050 (this-color nil)
1051 (defined-colors nil))
1052 (while all-colors
1053 (setq this-color (car all-colors)
1054 all-colors (cdr all-colors))
1055 (and (color-supported-p this-color frame t)
1056 (setq defined-colors (cons this-color defined-colors))))
1057 defined-colors))
1059 ;;;; Function keys
1061 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
1062 global-map)
1064 ;; Map certain keypad keys into ASCII characters
1065 ;; that people usually expect.
1066 (define-key function-key-map [backspace] [?\d])
1067 (define-key function-key-map [delete] [?\d])
1068 (define-key function-key-map [tab] [?\t])
1069 (define-key function-key-map [linefeed] [?\n])
1070 (define-key function-key-map [clear] [?\C-l])
1071 (define-key function-key-map [return] [?\C-m])
1072 (define-key function-key-map [escape] [?\e])
1073 (define-key function-key-map [M-backspace] [?\M-\d])
1074 (define-key function-key-map [M-delete] [?\M-\d])
1075 (define-key function-key-map [M-tab] [?\M-\t])
1076 (define-key function-key-map [M-linefeed] [?\M-\n])
1077 (define-key function-key-map [M-clear] [?\M-\C-l])
1078 (define-key function-key-map [M-return] [?\M-\C-m])
1079 (define-key function-key-map [M-escape] [?\M-\e])
1081 ;; These tell read-char how to convert
1082 ;; these special chars to ASCII.
1083 (put 'backspace 'ascii-character ?\d)
1084 (put 'delete 'ascii-character ?\d)
1085 (put 'tab 'ascii-character ?\t)
1086 (put 'linefeed 'ascii-character ?\n)
1087 (put 'clear 'ascii-character ?\C-l)
1088 (put 'return 'ascii-character ?\C-m)
1089 (put 'escape 'ascii-character ?\e)
1091 ;; Modifier name `ctrl' is an alias of `control'.
1092 (put 'ctrl 'modifier-value (get 'control 'modifier-value))
1095 ;;;; Script codes and coding systems
1096 (defconst mac-script-code-coding-systems
1097 '((0 . mac-roman) ; smRoman
1098 (1 . japanese-shift-jis) ; smJapanese
1099 (2 . chinese-big5) ; smTradChinese
1100 (3 . korean-iso-8bit) ; smKorean
1101 (7 . mac-cyrillic) ; smCyrillic
1102 (25 . chinese-iso-8bit) ; smSimpChinese
1103 (29 . mac-centraleurroman) ; smCentralEuroRoman
1105 "Alist of Mac script codes vs Emacs coding systems.")
1107 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
1108 "Add a character set to display with Mac fonts.
1109 Create an entry in `mac-charset-info-alist'.
1110 XLFD-CHARSET is a string which will appear in the XLFD font name
1111 to identify the character set. MAC-TEXT-ENCODING is the
1112 correspoinding TextEncodingBase value."
1113 (add-to-list 'mac-charset-info-alist
1114 (list xlfd-charset mac-text-encoding
1115 (cdr (assq mac-text-encoding
1116 mac-script-code-coding-systems)))))
1118 (setq mac-charset-info-alist nil)
1119 (mac-add-charset-info "mac-roman" 0)
1120 (mac-add-charset-info "jisx0208.1983-sjis" 1)
1121 (mac-add-charset-info "jisx0201.1976-0" 1)
1122 (mac-add-charset-info "big5-0" 2)
1123 (mac-add-charset-info "ksc5601.1989-0" 3)
1124 (mac-add-charset-info "mac-cyrillic" 7)
1125 (mac-add-charset-info "gb2312.1980-0" 25)
1126 (mac-add-charset-info "mac-centraleurroman" 29)
1127 (mac-add-charset-info "mac-symbol" 33)
1128 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
1129 (mac-add-charset-info "mac-dingbats" 34)
1130 (mac-add-charset-info "iso10646-1" 126) ; for ATSUI
1132 (cp-make-coding-system
1133 mac-centraleurroman
1134 [?\\e,AD\e(B ?\\e$,1 \e(B ?\\e$,1 !\e(B ?\\e,AI\e(B ?\\e$,1 $\e(B ?\\e,AV\e(B ?\\e,A\\e(B ?\\e,Aa\e(B ?\\e$,1 %\e(B ?\\e$,1 ,\e(B ?\\e,Ad\e(B ?\\e$,1 -\e(B ?\\e$,1 &\e(B ?\\e$,1 '\e(B ?\\e,Ai\e(B ?\\e$,1!9\e(B
1135 ?\\e$,1!:\e(B ?\\e$,1 .\e(B ?\\e,Am\e(B ?\\e$,1 /\e(B ?\\e$,1 2\e(B ?\\e$,1 3\e(B ?\\e$,1 6\e(B ?\\e,As\e(B ?\\e$,1 7\e(B ?\\e,At\e(B ?\\e,Av\e(B ?\\e,Au\e(B ?\\e,Az\e(B ?\\e$,1 :\e(B ?\\e$,1 ;\e(B ?\\e,A|\e(B
1136 ?\\e$,1s \e(B ?\\e,A0\e(B ?\\e$,1 8\e(B ?\\e,A#\e(B ?\\e,A'\e(B ?\\e$,1s"\e(B ?\\e,A6\e(B ?\\e,A_\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1 9\e(B ?\\e,A(\e(B ?\\e$,1y \e(B ?\\e$,1 C\e(B ?\\e$,1 N\e(B
1137 ?\\e$,1 O\e(B ?\\e$,1 J\e(B ?\\e$,1y$\e(B ?\\e$,1y%\e(B ?\\e$,1 K\e(B ?\\e$,1 V\e(B ?\\e$,1x"\e(B ?\\e$,1x1\e(B ?\\e$,1 b\e(B ?\\e$,1 [\e(B ?\\e$,1 \\e(B ?\\e$,1 ]\e(B ?\\e$,1 ^\e(B ?\\e$,1 Y\e(B ?\\e$,1 Z\e(B ?\\e$,1 e\e(B
1138 ?\\e$,1 f\e(B ?\\e$,1 c\e(B ?\\e,A,\e(B ?\\e$,1x:\e(B ?\\e$,1 d\e(B ?\\e$,1 g\e(B ?\\e$,1x&\e(B ?\\e,A+\e(B ?\\e,A;\e(B ?\\e$,1s&\e(B ?\\e,A \e(B ?\\e$,1 h\e(B ?\\e$,1 p\e(B ?\\e,AU\e(B ?\\e$,1 q\e(B ?\\e$,1 l\e(B
1139 ?\\e$,1rs\e(B ?\\e$,1rt\e(B ?\\e$,1r|\e(B ?\\e$,1r}\e(B ?\\e$,1rx\e(B ?\\e$,1ry\e(B ?\\e,Aw\e(B ?\\e$,2"*\e(B ?\\e$,1 m\e(B ?\\e$,1 t\e(B ?\\e$,1 u\e(B ?\\e$,1 x\e(B ?\\e$,1s9\e(B ?\\e$,1s:\e(B ?\\e$,1 y\e(B ?\\e$,1 v\e(B
1140 ?\\e$,1 w\e(B ?\\e$,1! \e(B ?\\e$,1rz\e(B ?\\e$,1r~\e(B ?\\e$,1!!\e(B ?\\e$,1 z\e(B ?\\e$,1 {\e(B ?\\e,AA\e(B ?\\e$,1!$\e(B ?\\e$,1!%\e(B ?\\e,AM\e(B ?\\e$,1!=\e(B ?\\e$,1!>\e(B ?\\e$,1!*\e(B ?\\e,AS\e(B ?\\e,AT\e(B
1141 ?\\e$,1!+\e(B ?\\e$,1!.\e(B ?\\e,AZ\e(B ?\\e$,1!/\e(B ?\\e$,1!0\e(B ?\\e$,1!1\e(B ?\\e$,1!2\e(B ?\\e$,1!3\e(B ?\\e,A]\e(B ?\\e,A}\e(B ?\\e$,1 W\e(B ?\\e$,1!;\e(B ?\\e$,1 a\e(B ?\\e$,1!<\e(B ?\\e$,1 B\e(B ?\\e$,1$g\e(B]
1142 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman).")
1143 (coding-system-put 'mac-centraleurroman 'mime-charset 'x-mac-centraleurroman)
1145 (cp-make-coding-system
1146 mac-cyrillic
1147 [?\\e$,1(0\e(B ?\\e$,1(1\e(B ?\\e$,1(2\e(B ?\\e$,1(3\e(B ?\\e$,1(4\e(B ?\\e$,1(5\e(B ?\\e$,1(6\e(B ?\\e$,1(7\e(B ?\\e$,1(8\e(B ?\\e$,1(9\e(B ?\\e$,1(:\e(B ?\\e$,1(;\e(B ?\\e$,1(<\e(B ?\\e$,1(=\e(B ?\\e$,1(>\e(B ?\\e$,1(?\e(B
1148 ?\\e$,1(@\e(B ?\\e$,1(A\e(B ?\\e$,1(B\e(B ?\\e$,1(C\e(B ?\\e$,1(D\e(B ?\\e$,1(E\e(B ?\\e$,1(F\e(B ?\\e$,1(G\e(B ?\\e$,1(H\e(B ?\\e$,1(I\e(B ?\\e$,1(J\e(B ?\\e$,1(K\e(B ?\\e$,1(L\e(B ?\\e$,1(M\e(B ?\\e$,1(N\e(B ?\\e$,1(O\e(B
1149 ?\\e$,1s \e(B ?\\e,A0\e(B ?\\e$,1)P\e(B ?\\e,A#\e(B ?\\e,A'\e(B ?\\e$,1s"\e(B ?\\e,A6\e(B ?\\e$,1(&\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1("\e(B ?\\e$,1(r\e(B ?\\e$,1y \e(B ?\\e$,1(#\e(B ?\\e$,1(s\e(B
1150 ?\\e$,1x>\e(B ?\\e,A1\e(B ?\\e$,1y$\e(B ?\\e$,1y%\e(B ?\\e$,1(v\e(B ?\\e,A5\e(B ?\\e$,1)Q\e(B ?\\e$,1((\e(B ?\\e$,1($\e(B ?\\e$,1(t\e(B ?\\e$,1('\e(B ?\\e$,1(w\e(B ?\\e$,1()\e(B ?\\e$,1(y\e(B ?\\e$,1(*\e(B ?\\e$,1(z\e(B
1151 ?\\e$,1(x\e(B ?\\e$,1(%\e(B ?\\e,A,\e(B ?\\e$,1x:\e(B ?\\e$,1!R\e(B ?\\e$,1xh\e(B ?\\e$,1x&\e(B ?\\e,A+\e(B ?\\e,A;\e(B ?\\e$,1s&\e(B ?\\e,A \e(B ?\\e$,1(+\e(B ?\\e$,1({\e(B ?\\e$,1(,\e(B ?\\e$,1(|\e(B ?\\e$,1(u\e(B
1152 ?\\e$,1rs\e(B ?\\e$,1rt\e(B ?\\e$,1r|\e(B ?\\e$,1r}\e(B ?\\e$,1rx\e(B ?\\e$,1ry\e(B ?\\e,Aw\e(B ?\\e$,1r~\e(B ?\\e$,1(.\e(B ?\\e$,1(~\e(B ?\\e$,1(/\e(B ?\\e$,1(\x7f\e(B ?\\e$,1uV\e(B ?\\e$,1(!\e(B ?\\e$,1(q\e(B ?\\e$,1(o\e(B
1153 ?\\e$,1(P\e(B ?\\e$,1(Q\e(B ?\\e$,1(R\e(B ?\\e$,1(S\e(B ?\\e$,1(T\e(B ?\\e$,1(U\e(B ?\\e$,1(V\e(B ?\\e$,1(W\e(B ?\\e$,1(X\e(B ?\\e$,1(Y\e(B ?\\e$,1(Z\e(B ?\\e$,1([\e(B ?\\e$,1(\\e(B ?\\e$,1(]\e(B ?\\e$,1(^\e(B ?\\e$,1(_\e(B
1154 ?\\e$,1(`\e(B ?\\e$,1(a\e(B ?\\e$,1(b\e(B ?\\e$,1(c\e(B ?\\e$,1(d\e(B ?\\e$,1(e\e(B ?\\e$,1(f\e(B ?\\e$,1(g\e(B ?\\e$,1(h\e(B ?\\e$,1(i\e(B ?\\e$,1(j\e(B ?\\e$,1(k\e(B ?\\e$,1(l\e(B ?\\e$,1(m\e(B ?\\e$,1(n\e(B ?\\e$,1tL\e(B]
1155 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic).")
1156 (coding-system-put 'mac-cyrillic 'mime-charset 'x-mac-cyrillic)
1158 (let
1159 ((encoding-vector
1160 (vconcat
1161 (make-vector 32 nil)
1162 ;; mac-symbol (32..126) -> emacs-mule mapping
1163 [?\ ?\! ?\\e$,1x \e(B ?\# ?\\e$,1x#\e(B ?\% ?\& ?\\e$,1x-\e(B ?\( ?\) ?\\e$,1x7\e(B ?\+ ?\, ?\\e$,1x2\e(B ?\. ?\/
1164 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
1165 ?\\e$,1xe\e(B ?\\e$,1&q\e(B ?\\e$,1&r\e(B ?\\e$,1''\e(B ?\\e$,1&t\e(B ?\\e$,1&u\e(B ?\\e$,1'&\e(B ?\\e$,1&s\e(B ?\\e$,1&w\e(B ?\\e$,1&y\e(B ?\\e$,1'Q\e(B ?\\e$,1&z\e(B ?\\e$,1&{\e(B ?\\e$,1&|\e(B ?\\e$,1&}\e(B ?\\e$,1&\x7f\e(B
1166 ?\\e$,1' \e(B ?\\e$,1&x\e(B ?\\e$,1'!\e(B ?\\e$,1'#\e(B ?\\e$,1'$\e(B ?\\e$,1'%\e(B ?\\e$,1'B\e(B ?\\e$,1')\e(B ?\\e$,1&~\e(B ?\\e$,1'(\e(B ?\\e$,1&v\e(B ?\[ ?\\e$,1xT\e(B ?\] ?\\e$,1ye\e(B ?\_
1167 ?\\e$,3bE\e(B ?\\e$,1'1\e(B ?\\e$,1'2\e(B ?\\e$,1'G\e(B ?\\e$,1'4\e(B ?\\e$,1'5\e(B ?\\e$,1'F\e(B ?\\e$,1'3\e(B ?\\e$,1'7\e(B ?\\e$,1'9\e(B ?\\e$,1'U\e(B ?\\e$,1':\e(B ?\\e$,1';\e(B ?\\e$,1'<\e(B ?\\e$,1'=\e(B ?\\e$,1'?\e(B
1168 ?\\e$,1'@\e(B ?\\e$,1'8\e(B ?\\e$,1'A\e(B ?\\e$,1'C\e(B ?\\e$,1'D\e(B ?\\e$,1'E\e(B ?\\e$,1'V\e(B ?\\e$,1'I\e(B ?\\e$,1'>\e(B ?\\e$,1'H\e(B ?\\e$,1'6\e(B ?\{ ?\| ?\} ?\\e$,1x\\e(B]
1169 (make-vector (- 160 127) nil)
1170 ;; mac-symbol (160..254) -> emacs-mule mapping
1171 ;; Mapping of the following characters are changed from the
1172 ;; original one:
1173 ;; 0xE2 0x00AE+0xF87F -> 0x00AE # REGISTERED SIGN, alternate: sans serif
1174 ;; 0xE3 0x00A9+0xF87F -> 0x00A9 # COPYRIGHT SIGN, alternate: sans serif
1175 ;; 0xE4 0x2122+0xF87F -> 0x2122 # TRADE MARK SIGN, alternate: sans serif
1176 [?\\e$,1tL\e(B ?\\e$,1'R\e(B ?\\e$,1s2\e(B ?\\e$,1y$\e(B ?\\e$,1sD\e(B ?\\e$,1x>\e(B ?\\e$,1!R\e(B ?\\e$,2#c\e(B ?\\e$,2#f\e(B ?\\e$,2#e\e(B ?\\e$,2#`\e(B ?\\e$,1vt\e(B ?\\e$,1vp\e(B ?\\e$,1vq\e(B ?\\e$,1vr\e(B ?\\e$,1vs\e(B
1177 ?\\e,A0\e(B ?\\e,A1\e(B ?\\e$,1s3\e(B ?\\e$,1y%\e(B ?\\e,AW\e(B ?\\e$,1x=\e(B ?\\e$,1x"\e(B ?\\e$,1s"\e(B ?\\e,Aw\e(B ?\\e$,1y \e(B ?\\e$,1y!\e(B ?\\e$,1xh\e(B ?\\e$,1s&\e(B ?\\e$,1|p\e(B ?\\e$,1|O\e(B ?\\e$,1w5\e(B
1178 ?\\e$,1uu\e(B ?\\e$,1uQ\e(B ?\\e$,1u\\e(B ?\\e$,1uX\e(B ?\\e$,1yW\e(B ?\\e$,1yU\e(B ?\\e$,1x%\e(B ?\\e$,1xI\e(B ?\\e$,1xJ\e(B ?\\e$,1yC\e(B ?\\e$,1yG\e(B ?\\e$,1yD\e(B ?\\e$,1yB\e(B ?\\e$,1yF\e(B ?\\e$,1x(\e(B ?\\e$,1x)\e(B
1179 ?\\e$,1x@\e(B ?\\e$,1x'\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1x/\e(B ?\\e$,1x:\e(B ?\\e$,1z%\e(B ?\\e,A,\e(B ?\\e$,1xG\e(B ?\\e$,1xH\e(B ?\\e$,1wT\e(B ?\\e$,1wP\e(B ?\\e$,1wQ\e(B ?\\e$,1wR\e(B ?\\e$,1wS\e(B
1180 ?\\e$,2"*\e(B ?\\e$,2=H\e(B ?\\e,A.\e(B ?\\e,A)\e(B ?\\e$,1ub\e(B ?\\e$,1x1\e(B ?\\e$,1|;\e(B ?\\e$,1|<\e(B ?\\e$,1|=\e(B ?\\e$,1|A\e(B ?\\e$,1|B\e(B ?\\e$,1|C\e(B ?\\e$,1|G\e(B ?\\e$,1|H\e(B ?\\e$,1|I\e(B ?\\e$,1|J\e(B
1181 ?\\e$,3b_\e(B ?\\e$,2=I\e(B ?\\e$,1xK\e(B ?\\e$,1{ \e(B ?\\e$,1|N\e(B ?\\e$,1{!\e(B ?\\e$,1|>\e(B ?\\e$,1|?\e(B ?\\e$,1|@\e(B ?\\e$,1|D\e(B ?\\e$,1|E\e(B ?\\e$,1|F\e(B ?\\e$,1|K\e(B ?\\e$,1|L\e(B ?\\e$,1|M\e(B
1182 nil]))
1183 translation-table)
1184 (setq translation-table
1185 (make-translation-table-from-vector encoding-vector))
1186 ;; (define-translation-table 'mac-symbol-decoder translation-table)
1187 (define-translation-table 'mac-symbol-encoder
1188 (char-table-extra-slot translation-table 0)))
1190 (let
1191 ((encoding-vector
1192 (vconcat
1193 (make-vector 32 nil)
1194 ;; mac-dingbats (32..126) -> emacs-mule mapping
1195 [?\ ?\\e$,2%A\e(B ?\\e$,2%B\e(B ?\\e$,2%C\e(B ?\\e$,2%D\e(B ?\\e$,2"n\e(B ?\\e$,2%F\e(B ?\\e$,2%G\e(B ?\\e$,2%H\e(B ?\\e$,2%I\e(B ?\\e$,2"{\e(B ?\\e$,2"~\e(B ?\\e$,2%L\e(B ?\\e$,2%M\e(B ?\\e$,2%N\e(B ?\\e$,2%O\e(B
1196 ?\\e$,2%P\e(B ?\\e$,2%Q\e(B ?\\e$,2%R\e(B ?\\e$,2%S\e(B ?\\e$,2%T\e(B ?\\e$,2%U\e(B ?\\e$,2%V\e(B ?\\e$,2%W\e(B ?\\e$,2%X\e(B ?\\e$,2%Y\e(B ?\\e$,2%Z\e(B ?\\e$,2%[\e(B ?\\e$,2%\\e(B ?\\e$,2%]\e(B ?\\e$,2%^\e(B ?\\e$,2%_\e(B
1197 ?\\e$,2%`\e(B ?\\e$,2%a\e(B ?\\e$,2%b\e(B ?\\e$,2%c\e(B ?\\e$,2%d\e(B ?\\e$,2%e\e(B ?\\e$,2%f\e(B ?\\e$,2%g\e(B ?\\e$,2"e\e(B ?\\e$,2%i\e(B ?\\e$,2%j\e(B ?\\e$,2%k\e(B ?\\e$,2%l\e(B ?\\e$,2%m\e(B ?\\e$,2%n\e(B ?\\e$,2%o\e(B
1198 ?\\e$,2%p\e(B ?\\e$,2%q\e(B ?\\e$,2%r\e(B ?\\e$,2%s\e(B ?\\e$,2%t\e(B ?\\e$,2%u\e(B ?\\e$,2%v\e(B ?\\e$,2%w\e(B ?\\e$,2%x\e(B ?\\e$,2%y\e(B ?\\e$,2%z\e(B ?\\e$,2%{\e(B ?\\e$,2%|\e(B ?\\e$,2%}\e(B ?\\e$,2%~\e(B ?\\e$,2%\x7f\e(B
1199 ?\\e$,2& \e(B ?\\e$,2&!\e(B ?\\e$,2&"\e(B ?\\e$,2&#\e(B ?\\e$,2&$\e(B ?\\e$,2&%\e(B ?\\e$,2&&\e(B ?\\e$,2&'\e(B ?\\e$,2&(\e(B ?\\e$,2&)\e(B ?\\e$,2&*\e(B ?\\e$,2&+\e(B ?\\e$,2"/\e(B ?\\e$,2&-\e(B ?\\e$,2!`\e(B ?\\e$,2&/\e(B
1200 ?\\e$,2&0\e(B ?\\e$,2&1\e(B ?\\e$,2&2\e(B ?\\e$,2!r\e(B ?\\e$,2!|\e(B ?\\e$,2"&\e(B ?\\e$,2&6\e(B ?\\e$,2"7\e(B ?\\e$,2&8\e(B ?\\e$,2&9\e(B ?\\e$,2&:\e(B ?\\e$,2&;\e(B ?\\e$,2&<\e(B ?\\e$,2&=\e(B ?\\e$,2&>\e(B
1202 ;; mac-dingbats (128..141) -> emacs-mule mapping
1203 ?\\e$,2&H\e(B ?\\e$,2&I\e(B ?\\e$,2&J\e(B ?\\e$,2&K\e(B ?\\e$,2&L\e(B ?\\e$,2&M\e(B ?\\e$,2&N\e(B ?\\e$,2&O\e(B ?\\e$,2&P\e(B ?\\e$,2&Q\e(B ?\\e$,2&R\e(B ?\\e$,2&S\e(B ?\\e$,2&T\e(B ?\\e$,2&U\e(B]
1204 (make-vector (- 161 142) nil)
1205 ;; mac-dingbats (161..239) -> emacs-mule mapping
1206 [?\\e$,2&A\e(B ?\\e$,2&B\e(B ?\\e$,2&C\e(B ?\\e$,2&D\e(B ?\\e$,2&E\e(B ?\\e$,2&F\e(B ?\\e$,2&G\e(B ?\\e$,2#c\e(B ?\\e$,2#f\e(B ?\\e$,2#e\e(B ?\\e$,2#`\e(B ?\\e$,1~@\e(B ?\\e$,1~A\e(B ?\\e$,1~B\e(B ?\\e$,1~C\e(B
1207 ?\\e$,1~D\e(B ?\\e$,1~E\e(B ?\\e$,1~F\e(B ?\\e$,1~G\e(B ?\\e$,1~H\e(B ?\\e$,1~I\e(B ?\\e$,2&V\e(B ?\\e$,2&W\e(B ?\\e$,2&X\e(B ?\\e$,2&Y\e(B ?\\e$,2&Z\e(B ?\\e$,2&[\e(B ?\\e$,2&\\e(B ?\\e$,2&]\e(B ?\\e$,2&^\e(B ?\\e$,2&_\e(B
1208 ?\\e$,2&`\e(B ?\\e$,2&a\e(B ?\\e$,2&b\e(B ?\\e$,2&c\e(B ?\\e$,2&d\e(B ?\\e$,2&e\e(B ?\\e$,2&f\e(B ?\\e$,2&g\e(B ?\\e$,2&h\e(B ?\\e$,2&i\e(B ?\\e$,2&j\e(B ?\\e$,2&k\e(B ?\\e$,2&l\e(B ?\\e$,2&m\e(B ?\\e$,2&n\e(B ?\\e$,2&o\e(B
1209 ?\\e$,2&p\e(B ?\\e$,2&q\e(B ?\\e$,2&r\e(B ?\\e$,2&s\e(B ?\\e$,2&t\e(B ?\\e$,1vr\e(B ?\\e$,1vt\e(B ?\\e$,1vu\e(B ?\\e$,2&x\e(B ?\\e$,2&y\e(B ?\\e$,2&z\e(B ?\\e$,2&{\e(B ?\\e$,2&|\e(B ?\\e$,2&}\e(B ?\\e$,2&~\e(B ?\\e$,2&\x7f\e(B
1210 ?\\e$,2' \e(B ?\\e$,2'!\e(B ?\\e$,2'"\e(B ?\\e$,2'#\e(B ?\\e$,2'$\e(B ?\\e$,2'%\e(B ?\\e$,2'&\e(B ?\\e$,2''\e(B ?\\e$,2'(\e(B ?\\e$,2')\e(B ?\\e$,2'*\e(B ?\\e$,2'+\e(B ?\\e$,2',\e(B ?\\e$,2'-\e(B ?\\e$,2'.\e(B ?\\e$,2'/\e(B
1212 ;; mac-dingbats (241..254) -> emacs-mule mapping
1213 ?\\e$,2'1\e(B ?\\e$,2'2\e(B ?\\e$,2'3\e(B ?\\e$,2'4\e(B ?\\e$,2'5\e(B ?\\e$,2'6\e(B ?\\e$,2'7\e(B ?\\e$,2'8\e(B ?\\e$,2'9\e(B ?\\e$,2':\e(B ?\\e$,2';\e(B ?\\e$,2'<\e(B ?\\e$,2'=\e(B ?\\e$,2'>\e(B
1214 nil]))
1215 translation-table)
1216 (setq translation-table
1217 (make-translation-table-from-vector encoding-vector))
1218 ;; (define-translation-table 'mac-dingbats-decoder translation-table)
1219 (define-translation-table 'mac-dingbats-encoder
1220 (char-table-extra-slot translation-table 0)))
1222 (defconst mac-system-coding-system
1223 (let ((base (or (cdr (assq mac-system-script-code
1224 mac-script-code-coding-systems))
1225 'mac-roman)))
1226 (if (eq system-type 'darwin)
1227 base
1228 (coding-system-change-eol-conversion base 'mac)))
1229 "Coding system derived from the system script code.")
1231 (set-selection-coding-system mac-system-coding-system)
1234 ;;;; Keyboard layout/language change events
1235 (defun mac-handle-language-change (event)
1236 "Set keyboard coding system to what is specified in EVENT."
1237 (interactive "e")
1238 (let ((coding-system
1239 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
1240 (set-keyboard-coding-system (or coding-system 'mac-roman))
1241 ;; MacJapanese maps reverse solidus to ?\x80.
1242 (if (eq coding-system 'japanese-shift-jis)
1243 (define-key key-translation-map [?\x80] "\\"))))
1245 (define-key special-event-map [language-change] 'mac-handle-language-change)
1248 ;;;; Conversion between common flavors and Lisp string.
1250 (defconst mac-text-encoding-ascii #x600
1251 "ASCII text encoding.")
1253 (defconst mac-text-encoding-mac-japanese-basic-variant #x20001
1254 "MacJapanese text encoding without Apple double-byte extensions.")
1256 (defun mac-utxt-to-string (data &optional coding-system)
1257 (or coding-system (setq coding-system mac-system-coding-system))
1258 (let* ((encoding
1259 (and (eq system-type 'darwin)
1260 (eq (coding-system-base coding-system) 'japanese-shift-jis)
1261 mac-text-encoding-mac-japanese-basic-variant))
1262 (str (and (fboundp 'mac-code-convert-string)
1263 (mac-code-convert-string data nil
1264 (or encoding coding-system)))))
1265 (when str
1266 (setq str (decode-coding-string str coding-system))
1267 (if (eq encoding mac-text-encoding-mac-japanese-basic-variant)
1268 ;; Does it contain Apple one-byte extensions other than
1269 ;; reverse solidus?
1270 (if (string-match "[\xa0\xfd-\xff]" str)
1271 (setq str nil)
1272 ;; ASCII-only?
1273 (unless (mac-code-convert-string data nil mac-text-encoding-ascii)
1274 (subst-char-in-string ?\x5c ?\\e(J\\e(B str t)
1275 (subst-char-in-string ?\x80 ?\\ str t)))))
1276 (or str
1277 (decode-coding-string data
1278 (if (eq (byteorder) ?B) 'utf-16be 'utf-16le)))))
1280 (defun mac-string-to-utxt (string &optional coding-system)
1281 (or coding-system (setq coding-system mac-system-coding-system))
1282 (let (data encoding)
1283 (when (and (fboundp 'mac-code-convert-string)
1284 (memq (coding-system-base coding-system)
1285 (find-coding-systems-string string)))
1286 (setq coding-system
1287 (coding-system-change-eol-conversion coding-system 'mac))
1288 (let ((str string))
1289 (when (and (eq system-type 'darwin)
1290 (eq coding-system 'japanese-shift-jis-mac))
1291 (setq encoding mac-text-encoding-mac-japanese-basic-variant)
1292 (setq str (subst-char-in-string ?\\ ?\x80 str))
1293 (subst-char-in-string ?\\e(J\\e(B ?\x5c str t)
1294 ;; ASCII-only?
1295 (if (string-match "\\`[\x00-\x7f]*\\'" str)
1296 (setq str nil)))
1297 (and str
1298 (setq data (mac-code-convert-string
1299 (encode-coding-string str coding-system)
1300 (or encoding coding-system) nil)))))
1301 (or data (encode-coding-string string (if (eq (byteorder) ?B)
1302 'utf-16be-mac
1303 'utf-16le-mac)))))
1305 (defun mac-TEXT-to-string (data &optional coding-system)
1306 (or coding-system (setq coding-system mac-system-coding-system))
1307 (prog1 (setq data (decode-coding-string data coding-system))
1308 (when (eq (coding-system-base coding-system) 'japanese-shift-jis)
1309 ;; (subst-char-in-string ?\x5c ?\\e(J\\e(B data t)
1310 (subst-char-in-string ?\x80 ?\\ data t))))
1312 (defun mac-string-to-TEXT (string &optional coding-system)
1313 (or coding-system (setq coding-system mac-system-coding-system))
1314 (let ((encodables (find-coding-systems-string string))
1315 (rest mac-script-code-coding-systems))
1316 (unless (memq (coding-system-base coding-system) encodables)
1317 (while (and rest (not (memq (cdar rest) encodables)))
1318 (setq rest (cdr rest)))
1319 (if rest
1320 (setq coding-system (cdar rest)))))
1321 (setq coding-system
1322 (coding-system-change-eol-conversion coding-system 'mac))
1323 (when (eq coding-system 'japanese-shift-jis-mac)
1324 ;; (setq string (subst-char-in-string ?\\ ?\x80 string))
1325 (setq string (subst-char-in-string ?\\e(J\\e(B ?\x5c string)))
1326 (encode-coding-string string coding-system))
1328 (defun mac-furl-to-string (data)
1329 ;; Remove a trailing nul character.
1330 (let ((len (length data)))
1331 (if (and (> len 0) (= (aref data (1- len)) ?\0))
1332 (substring data 0 (1- len))
1333 data)))
1335 (defun mac-TIFF-to-string (data &optional text)
1336 (prog1 (or text (setq text (copy-sequence " ")))
1337 (put-text-property 0 (length text) 'display (create-image data 'tiff t)
1338 text)))
1340 ;;;; Selections
1342 ;;; We keep track of the last text selected here, so we can check the
1343 ;;; current selection against it, and avoid passing back our own text
1344 ;;; from x-get-selection-value.
1345 (defvar x-last-selected-text-clipboard nil
1346 "The value of the CLIPBOARD selection last time we selected or
1347 pasted text.")
1348 (defvar x-last-selected-text-primary nil
1349 "The value of the PRIMARY X selection last time we selected or
1350 pasted text.")
1352 (defcustom x-select-enable-clipboard t
1353 "*Non-nil means cutting and pasting uses the clipboard.
1354 This is in addition to the primary selection."
1355 :type 'boolean
1356 :group 'killing)
1358 ;;; Make TEXT, a string, the primary X selection.
1359 (defun x-select-text (text &optional push)
1360 (x-set-selection 'PRIMARY text)
1361 (setq x-last-selected-text-primary text)
1362 (if (not x-select-enable-clipboard)
1363 (setq x-last-selected-text-clipboard nil)
1364 (x-set-selection 'CLIPBOARD text)
1365 (setq x-last-selected-text-clipboard text))
1368 (defun x-get-selection (&optional type data-type)
1369 "Return the value of a selection.
1370 The argument TYPE (default `PRIMARY') says which selection,
1371 and the argument DATA-TYPE (default `STRING') says
1372 how to convert the data.
1374 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
1375 only a few symbols are commonly used. They conventionally have
1376 all upper-case names. The most often used ones, in addition to
1377 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
1379 DATA-TYPE is usually `STRING', but can also be one of the symbols
1380 in `selection-converter-alist', which see."
1381 (let ((data (x-get-selection-internal (or type 'PRIMARY)
1382 (or data-type 'STRING)))
1383 (coding (or next-selection-coding-system
1384 selection-coding-system)))
1385 (when (and (stringp data)
1386 (setq data-type (get-text-property 0 'foreign-selection data)))
1387 (cond ((eq data-type 'public.utf16-plain-text)
1388 (setq data (mac-utxt-to-string data coding)))
1389 ((eq data-type 'com.apple.traditional-mac-plain-text)
1390 (setq data (mac-TEXT-to-string data coding)))
1391 ((eq data-type 'public.file-url)
1392 (setq data (mac-furl-to-string data))))
1393 (put-text-property 0 (length data) 'foreign-selection data-type data))
1394 data))
1396 (defun x-selection-value (type)
1397 (let ((data-types '(public.utf16-plain-text
1398 com.apple.traditional-mac-plain-text
1399 public.file-url))
1400 text tiff-image)
1401 (while (and (null text) data-types)
1402 (setq text (condition-case nil
1403 (x-get-selection type (car data-types))
1404 (error nil)))
1405 (setq data-types (cdr data-types)))
1406 (if text
1407 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
1408 (setq tiff-image (condition-case nil
1409 (x-get-selection type 'public.tiff)
1410 (error nil)))
1411 (when tiff-image
1412 (remove-text-properties 0 (length tiff-image)
1413 '(foreign-selection nil) tiff-image)
1414 (setq text (mac-TIFF-to-string tiff-image text)))
1415 text))
1417 ;;; Return the value of the current selection.
1418 ;;; Treat empty strings as if they were unset.
1419 ;;; If this function is called twice and finds the same text,
1420 ;;; it returns nil the second time. This is so that a single
1421 ;;; selection won't be added to the kill ring over and over.
1422 (defun x-get-selection-value ()
1423 (let (clip-text primary-text)
1424 (if (not x-select-enable-clipboard)
1425 (setq x-last-selected-text-clipboard nil)
1426 (setq clip-text (x-selection-value 'CLIPBOARD))
1427 (if (string= clip-text "") (setq clip-text nil))
1429 ;; Check the CLIPBOARD selection for 'newness', is it different
1430 ;; from what we remebered them to be last time we did a
1431 ;; cut/paste operation.
1432 (setq clip-text
1433 (cond;; check clipboard
1434 ((or (not clip-text) (string= clip-text ""))
1435 (setq x-last-selected-text-clipboard nil))
1436 ((eq clip-text x-last-selected-text-clipboard) nil)
1437 ((string= clip-text x-last-selected-text-clipboard)
1438 ;; Record the newer string,
1439 ;; so subsequent calls can use the `eq' test.
1440 (setq x-last-selected-text-clipboard clip-text)
1441 nil)
1443 (setq x-last-selected-text-clipboard clip-text))))
1446 (setq primary-text (x-selection-value 'PRIMARY))
1447 ;; Check the PRIMARY selection for 'newness', is it different
1448 ;; from what we remebered them to be last time we did a
1449 ;; cut/paste operation.
1450 (setq primary-text
1451 (cond;; check primary selection
1452 ((or (not primary-text) (string= primary-text ""))
1453 (setq x-last-selected-text-primary nil))
1454 ((eq primary-text x-last-selected-text-primary) nil)
1455 ((string= primary-text x-last-selected-text-primary)
1456 ;; Record the newer string,
1457 ;; so subsequent calls can use the `eq' test.
1458 (setq x-last-selected-text-primary primary-text)
1459 nil)
1461 (setq x-last-selected-text-primary primary-text))))
1463 ;; As we have done one selection, clear this now.
1464 (setq next-selection-coding-system nil)
1466 ;; At this point we have recorded the current values for the
1467 ;; selection from clipboard (if we are supposed to) and primary,
1468 ;; So return the first one that has changed (which is the first
1469 ;; non-null one).
1470 (or clip-text primary-text)
1473 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
1474 (when (eq system-type 'darwin)
1475 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
1476 (put 'PRIMARY 'mac-scrap-name
1477 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
1478 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
1479 (put 'public.utf16-plain-text 'mac-ostype "utxt")
1480 (put 'public.tiff 'mac-ostype "TIFF")
1481 (put 'public.file-url 'mac-ostype "furl")
1483 (defun mac-select-convert-to-string (selection type value)
1484 (let ((str (cdr (xselect-convert-to-string selection nil value)))
1485 (coding (or next-selection-coding-system selection-coding-system)))
1486 (when str
1487 ;; If TYPE is nil, this is a local request, thus return STR as
1488 ;; is. Otherwise, encode STR.
1489 (if (not type)
1491 (let ((inhibit-read-only t))
1492 (remove-text-properties 0 (length str) '(composition nil) str)
1493 (cond
1494 ((eq type 'public.utf16-plain-text)
1495 (setq str (mac-string-to-utxt str coding)))
1496 ((eq type 'com.apple.traditional-mac-plain-text)
1497 (setq str (mac-string-to-TEXT str coding)))
1499 (error "Unknown selection type: %S" type))
1502 (setq next-selection-coding-system nil)
1503 (cons type str))))
1505 (defun mac-select-convert-to-file-url (selection type value)
1506 (let ((filename (xselect-convert-to-filename selection type value))
1507 (coding (or file-name-coding-system default-file-name-coding-system)))
1508 (if (and filename coding)
1509 (setq filename (encode-coding-string filename coding)))
1510 (and filename
1511 (concat "file://localhost"
1512 (mapconcat 'url-hexify-string
1513 (split-string filename "/") "/")))))
1515 (setq selection-converter-alist
1516 (nconc
1517 '((public.utf16-plain-text . mac-select-convert-to-string)
1518 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
1519 ;; This is not enabled by default because the `Import Image'
1520 ;; menu makes Emacs crash or hang for unknown reasons.
1521 ;; (public.tiff . nil)
1522 (public.file-url . mac-select-convert-to-file-url)
1524 selection-converter-alist))
1526 ;;;; Apple events, HICommand events, and Services menu
1528 ;;; Event classes
1529 (put 'core-event 'mac-apple-event-class "aevt") ; kCoreEventClass
1530 (put 'internet-event 'mac-apple-event-class "GURL") ; kAEInternetEventClass
1532 ;;; Event IDs
1533 ;; kCoreEventClass
1534 (put 'open-application 'mac-apple-event-id "oapp") ; kAEOpenApplication
1535 (put 'reopen-application 'mac-apple-event-id "rapp") ; kAEReopenApplication
1536 (put 'open-documents 'mac-apple-event-id "odoc") ; kAEOpenDocuments
1537 (put 'print-documents 'mac-apple-event-id "pdoc") ; kAEPrintDocuments
1538 (put 'open-contents 'mac-apple-event-id "ocon") ; kAEOpenContents
1539 (put 'quit-application 'mac-apple-event-id "quit") ; kAEQuitApplication
1540 (put 'application-died 'mac-apple-event-id "obit") ; kAEApplicationDied
1541 (put 'show-preferences 'mac-apple-event-id "pref") ; kAEShowPreferences
1542 (put 'autosave-now 'mac-apple-event-id "asav") ; kAEAutosaveNow
1543 ;; kAEInternetEventClass
1544 (put 'get-url 'mac-apple-event-id "GURL") ; kAEGetURL
1545 ;; Converted HI command events
1546 (put 'about 'mac-apple-event-id "abou") ; kHICommandAbout
1547 (put 'show-hide-font-panel 'mac-apple-event-id "shfp") ; kHICommandShowHideFontPanel
1549 (defmacro mac-event-spec (event)
1550 `(nth 1 ,event))
1552 (defmacro mac-event-ae (event)
1553 `(nth 2 ,event))
1555 (defun mac-ae-parameter (ae &optional keyword type)
1556 (or keyword (setq keyword "----")) ;; Direct object.
1557 (if (not (and (consp ae) (equal (car ae) "aevt")))
1558 (error "Not an Apple event: %S" ae)
1559 (let ((type-data (cdr (assoc keyword (cdr ae))))
1560 data)
1561 (when (and type type-data (not (equal type (car type-data))))
1562 (setq data (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1563 (setq type-data (if data (cons type data) nil)))
1564 type-data)))
1566 (defun mac-ae-list (ae &optional keyword type)
1567 (or keyword (setq keyword "----")) ;; Direct object.
1568 (let ((desc (mac-ae-parameter ae keyword "list")))
1569 (cond ((null desc)
1570 nil)
1571 ((not (equal (car desc) "list"))
1572 (error "Parameter for \"%s\" is not a list" keyword))
1574 (if (null type)
1575 (cdr desc)
1576 (mapcar
1577 (lambda (type-data)
1578 (mac-coerce-ae-data (car type-data) (cdr type-data) type))
1579 (cdr desc)))))))
1581 (defun mac-ae-number (ae keyword)
1582 (let ((type-data (mac-ae-parameter ae keyword))
1583 str)
1584 (if (and type-data
1585 (setq str (mac-coerce-ae-data (car type-data)
1586 (cdr type-data) "TEXT")))
1587 (let ((num (string-to-number str)))
1588 ;; Mac OS Classic may return "0e+0" as the coerced value for
1589 ;; the type "magn" and the data "\000\000\000\000".
1590 (if (= num 0.0) 0 num))
1591 nil)))
1593 (defun mac-bytes-to-integer (bytes &optional from to)
1594 (or from (setq from 0))
1595 (or to (setq to (length bytes)))
1596 (let* ((len (- to from))
1597 (extended-sign-len (- (1+ (ceiling (log most-positive-fixnum 2)))
1598 (* 8 len)))
1599 (result 0))
1600 (dotimes (i len)
1601 (setq result (logior (lsh result 8)
1602 (aref bytes (+ from (if (eq (byteorder) ?B) i
1603 (- len i 1)))))))
1604 (if (> extended-sign-len 0)
1605 (ash (lsh result extended-sign-len) (- extended-sign-len))
1606 result)))
1608 (defun mac-ae-selection-range (ae)
1609 ;; #pragma options align=mac68k
1610 ;; typedef struct SelectionRange {
1611 ;; short unused1; // 0 (not used)
1612 ;; short lineNum; // line to select (<0 to specify range)
1613 ;; long startRange; // start of selection range (if line < 0)
1614 ;; long endRange; // end of selection range (if line < 0)
1615 ;; long unused2; // 0 (not used)
1616 ;; long theDate; // modification date/time
1617 ;; } SelectionRange;
1618 ;; #pragma options align=reset
1619 (let ((range-bytes (cdr (mac-ae-parameter ae "kpos" "TEXT"))))
1620 (and range-bytes
1621 (list (mac-bytes-to-integer range-bytes 2 4)
1622 (mac-bytes-to-integer range-bytes 4 8)
1623 (mac-bytes-to-integer range-bytes 8 12)
1624 (mac-bytes-to-integer range-bytes 16 20)))))
1626 ;; On Mac OS X 10.4 and later, the `open-document' event contains an
1627 ;; optional parameter keyAESearchText from the Spotlight search.
1628 (defun mac-ae-text-for-search (ae)
1629 (let ((utf8-text (cdr (mac-ae-parameter ae "stxt" "utf8"))))
1630 (and utf8-text
1631 (decode-coding-string utf8-text 'utf-8))))
1633 (defun mac-ae-text (ae)
1634 (or (cdr (mac-ae-parameter ae nil "TEXT"))
1635 (error "No text in Apple event.")))
1637 (defun mac-ae-frame (ae &optional keyword type)
1638 (let ((bytes (cdr (mac-ae-parameter ae keyword type))))
1639 (if (or (null bytes) (/= (length bytes) 4))
1640 (error "No window reference in Apple event.")
1641 (let ((window-id (mac-coerce-ae-data "long" bytes "TEXT"))
1642 (rest (frame-list))
1643 frame)
1644 (while (and (null frame) rest)
1645 (if (string= (frame-parameter (car rest) 'window-id) window-id)
1646 (setq frame (car rest)))
1647 (setq rest (cdr rest)))
1648 frame))))
1650 (defun mac-ae-script-language (ae keyword)
1651 ;; struct WritingCode {
1652 ;; ScriptCode theScriptCode;
1653 ;; LangCode theLangCode;
1654 ;; };
1655 (let ((bytes (cdr (mac-ae-parameter ae keyword "intl"))))
1656 (and bytes
1657 (cons (mac-bytes-to-integer bytes 0 2)
1658 (mac-bytes-to-integer bytes 2 4)))))
1660 (defun mac-bytes-to-text-range (bytes &optional from to)
1661 ;; struct TextRange {
1662 ;; long fStart;
1663 ;; long fEnd;
1664 ;; short fHiliteStyle;
1665 ;; };
1666 (or from (setq from 0))
1667 (or to (setq to (length bytes)))
1668 (and (= (- to from) (+ 4 4 2))
1669 (list (mac-bytes-to-integer bytes from (+ from 4))
1670 (mac-bytes-to-integer bytes (+ from 4) (+ from 8))
1671 (mac-bytes-to-integer bytes (+ from 8) to))))
1673 (defun mac-ae-text-range-array (ae keyword)
1674 ;; struct TextRangeArray {
1675 ;; short fNumOfRanges;
1676 ;; TextRange fRange[1];
1677 ;; };
1678 (let* ((bytes (cdr (mac-ae-parameter ae keyword "tray")))
1679 (len (length bytes))
1680 nranges result)
1681 (when (and bytes (>= len 2)
1682 (progn
1683 (setq nranges (mac-bytes-to-integer bytes 0 2))
1684 (= len (+ 2 (* nranges 10)))))
1685 (setq result (make-vector nranges nil))
1686 (dotimes (i nranges)
1687 (aset result i
1688 (mac-bytes-to-text-range bytes (+ (* i 10) 2)
1689 (+ (* i 10) 12)))))
1690 result))
1692 (defconst mac-keyboard-modifier-mask-alist
1693 (mapcar
1694 (lambda (modifier-bit)
1695 (cons (car modifier-bit) (lsh 1 (cdr modifier-bit))))
1696 '((command . 8) ; cmdKeyBit
1697 (shift . 9) ; shiftKeyBit
1698 (option . 11) ; optionKeyBit
1699 (control . 12) ; controlKeyBit
1700 (function . 17))) ; kEventKeyModifierFnBit
1701 "Alist of Mac keyboard modifier symbols vs masks.")
1703 (defun mac-ae-keyboard-modifiers (ae)
1704 (let ((modifiers-value (mac-ae-number ae "kmod"))
1705 modifiers)
1706 (if modifiers-value
1707 (dolist (modifier-mask mac-keyboard-modifier-mask-alist)
1708 (if (/= (logand modifiers-value (cdr modifier-mask)) 0)
1709 (setq modifiers (cons (car modifier-mask) modifiers)))))
1710 modifiers))
1712 (defun mac-ae-reopen-application (event)
1713 "Show some frame in response to the Apple event EVENT.
1714 The frame to be shown is chosen from visible or iconified frames
1715 if possible. If there's no such frame, a new frame is created."
1716 (interactive "e")
1717 (unless (frame-visible-p (selected-frame))
1718 (let ((frame (or (car (visible-frame-list))
1719 (car (filtered-frame-list 'frame-visible-p)))))
1720 (if frame
1721 (select-frame frame)
1722 (switch-to-buffer-other-frame "*scratch*"))))
1723 (select-frame-set-input-focus (selected-frame)))
1725 (defun mac-ae-open-documents (event)
1726 "Open the documents specified by the Apple event EVENT."
1727 (interactive "e")
1728 (let ((ae (mac-event-ae event)))
1729 (dolist (file-name (mac-ae-list ae nil 'undecoded-file-name))
1730 (if file-name
1731 (dnd-open-local-file
1732 (concat "file://"
1733 (mapconcat 'url-hexify-string
1734 (split-string file-name "/") "/")) nil)))
1735 (let ((selection-range (mac-ae-selection-range ae))
1736 (search-text (mac-ae-text-for-search ae)))
1737 (cond (selection-range
1738 (let ((line (car selection-range))
1739 (start (cadr selection-range))
1740 (end (nth 2 selection-range)))
1741 (if (> line 0)
1742 (goto-line line)
1743 (if (and (> start 0) (> end 0))
1744 (progn (set-mark start)
1745 (goto-char end))))))
1746 ((stringp search-text)
1747 (re-search-forward
1748 (mapconcat 'regexp-quote (split-string search-text) "\\|")
1749 nil t)))))
1750 (select-frame-set-input-focus (selected-frame)))
1752 (defun mac-ae-quit-application (event)
1753 "Quit the application Emacs with the Apple event EVENT."
1754 (interactive "e")
1755 (let ((ae (mac-event-ae event)))
1756 (unwind-protect
1757 (save-buffers-kill-emacs)
1758 ;; Reaches here if the user has canceled the quit.
1759 (mac-resume-apple-event ae -128)))) ; userCanceledErr
1761 (defun mac-ae-get-url (event)
1762 "Open the URL specified by the Apple event EVENT.
1763 Currently the `mailto' scheme is supported."
1764 (interactive "e")
1765 (let* ((ae (mac-event-ae event))
1766 (parsed-url (url-generic-parse-url (mac-ae-text ae))))
1767 (if (string= (url-type parsed-url) "mailto")
1768 (progn
1769 (url-mailto parsed-url)
1770 (select-frame-set-input-focus (selected-frame)))
1771 (mac-resume-apple-event ae t))))
1773 (setq mac-apple-event-map (make-sparse-keymap))
1775 ;; Received when Emacs is launched without associated documents.
1776 ;; Accept it as an Apple event, but no Emacs event is generated so as
1777 ;; not to erase the splash screen.
1778 (define-key mac-apple-event-map [core-event open-application] 0)
1780 ;; Received when a dock or application icon is clicked and Emacs is
1781 ;; already running.
1782 (define-key mac-apple-event-map [core-event reopen-application]
1783 'mac-ae-reopen-application)
1785 (define-key mac-apple-event-map [core-event open-documents]
1786 'mac-ae-open-documents)
1787 (define-key mac-apple-event-map [core-event show-preferences] 'customize)
1788 (define-key mac-apple-event-map [core-event quit-application]
1789 'mac-ae-quit-application)
1791 (define-key mac-apple-event-map [internet-event get-url] 'mac-ae-get-url)
1793 (define-key mac-apple-event-map [hi-command about] 'about-emacs)
1795 ;;; Converted Carbon Events
1796 (defun mac-handle-toolbar-switch-mode (event)
1797 "Toggle visibility of tool-bars in response to EVENT.
1798 With no keyboard modifiers, it toggles the visibility of the
1799 frame where the tool-bar toggle button was pressed. With some
1800 modifiers, it changes the global tool-bar visibility setting."
1801 (interactive "e")
1802 (let ((ae (mac-event-ae event)))
1803 (if (mac-ae-keyboard-modifiers ae)
1804 ;; Globally toggle tool-bar-mode if some modifier key is pressed.
1805 (tool-bar-mode 'toggle)
1806 (let ((frame (mac-ae-frame ae)))
1807 (set-frame-parameter frame 'tool-bar-lines
1808 (if (= (frame-parameter frame 'tool-bar-lines) 0)
1809 1 0))))))
1811 ;; kEventClassWindow/kEventWindowToolbarSwitchMode
1812 (define-key mac-apple-event-map [window toolbar-switch-mode]
1813 'mac-handle-toolbar-switch-mode)
1815 ;;; Font panel
1816 (when (fboundp 'mac-set-font-panel-visible-p)
1818 (define-minor-mode mac-font-panel-mode
1819 "Toggle use of the font panel.
1820 With numeric ARG, display the font panel if and only if ARG is positive."
1821 :init-value nil
1822 :global t
1823 :group 'mac
1824 (mac-set-font-panel-visible-p mac-font-panel-mode))
1826 (defun mac-handle-font-panel-closed (event)
1827 "Update internal status in response to font panel closed EVENT."
1828 (interactive "e")
1829 ;; Synchronize with the minor mode variable.
1830 (mac-font-panel-mode 0))
1832 (defun mac-handle-font-selection (event)
1833 "Change default face attributes according to font selection EVENT."
1834 (interactive "e")
1835 (let* ((ae (mac-event-ae event))
1836 (fm-font-size (mac-ae-number ae "fmsz"))
1837 (atsu-font-id (mac-ae-number ae "auid"))
1838 (attribute-values (and atsu-font-id
1839 (mac-atsu-font-face-attributes atsu-font-id))))
1840 (if fm-font-size
1841 (setq attribute-values
1842 `(:height ,(* 10 fm-font-size) ,@attribute-values)))
1843 (apply 'set-face-attribute 'default (selected-frame) attribute-values)))
1845 ;; kEventClassFont/kEventFontPanelClosed
1846 (define-key mac-apple-event-map [font panel-closed]
1847 'mac-handle-font-panel-closed)
1848 ;; kEventClassFont/kEventFontSelection
1849 (define-key mac-apple-event-map [font selection] 'mac-handle-font-selection)
1850 (define-key mac-apple-event-map [hi-command show-hide-font-panel]
1851 'mac-font-panel-mode)
1853 (define-key-after menu-bar-showhide-menu [mac-font-panel-mode]
1854 (menu-bar-make-mm-toggle mac-font-panel-mode
1855 "Font Panel"
1856 "Show the font panel as a floating dialog")
1857 'showhide-speedbar)
1859 ) ;; (fboundp 'mac-set-font-panel-visible-p)
1861 ;;; Text Services
1862 (defvar mac-ts-active-input-buf ""
1863 "Byte sequence of the current Mac TSM active input area.")
1864 (defvar mac-ts-update-active-input-area-seqno 0
1865 "Number of processed update-active-input-area events.")
1866 (setq mac-ts-active-input-overlay (make-overlay 0 0))
1868 (defface mac-ts-caret-position
1869 '((t :inverse-video t))
1870 "Face for caret position in Mac TSM active input area.
1871 This is used when the active input area is displayed either in
1872 the echo area or in a buffer where the cursor is not displayed."
1873 :group 'mac)
1875 (defface mac-ts-raw-text
1876 '((t :underline t))
1877 "Face for raw text in Mac TSM active input area."
1878 :group 'mac)
1880 (defface mac-ts-selected-raw-text
1881 '((t :underline t))
1882 "Face for selected raw text in Mac TSM active input area."
1883 :group 'mac)
1885 (defface mac-ts-converted-text
1886 '((((background dark)) :underline "gray20")
1887 (t :underline "gray80"))
1888 "Face for converted text in Mac TSM active input area."
1889 :group 'mac)
1891 (defface mac-ts-selected-converted-text
1892 '((t :underline t))
1893 "Face for selected converted text in Mac TSM active input area."
1894 :group 'mac)
1896 (defface mac-ts-block-fill-text
1897 '((t :underline t))
1898 "Face for block fill text in Mac TSM active input area."
1899 :group 'mac)
1901 (defface mac-ts-outline-text
1902 '((t :underline t))
1903 "Face for outline text in Mac TSM active input area."
1904 :group 'mac)
1906 (defface mac-ts-selected-text
1907 '((t :underline t))
1908 "Face for selected text in Mac TSM active input area."
1909 :group 'mac)
1911 (defface mac-ts-no-hilite
1912 '((t :inherit default))
1913 "Face for no hilite in Mac TSM active input area."
1914 :group 'mac)
1916 (defconst mac-ts-hilite-style-faces
1917 '((2 . mac-ts-raw-text) ; kTSMHiliteRawText
1918 (3 . mac-ts-selected-raw-text) ; kTSMHiliteSelectedRawText
1919 (4 . mac-ts-converted-text) ; kTSMHiliteConvertedText
1920 (5 . mac-ts-selected-converted-text) ; kTSMHiliteSelectedConvertedText
1921 (6 . mac-ts-block-fill-text) ; kTSMHiliteBlockFillText
1922 (7 . mac-ts-outline-text) ; kTSMHiliteOutlineText
1923 (8 . mac-ts-selected-text) ; kTSMHiliteSelectedText
1924 (9 . mac-ts-no-hilite)) ; kTSMHiliteNoHilite
1925 "Alist of Mac TSM hilite style vs Emacs face.")
1927 (defun mac-ts-update-active-input-buf (text fix-len hilite-rng update-rng)
1928 (let ((buf-len (length mac-ts-active-input-buf))
1929 confirmed)
1930 (if (or (null update-rng)
1931 (/= (% (length update-rng) 2) 0))
1932 ;; The parameter is missing (or in a bad format). The
1933 ;; existing inline input session is completely replaced with
1934 ;; the new text.
1935 (setq mac-ts-active-input-buf text)
1936 ;; Otherwise, the current subtext specified by the (2*j)-th
1937 ;; range is replaced with the new subtext specified by the
1938 ;; (2*j+1)-th range.
1939 (let ((tail buf-len)
1940 (i (length update-rng))
1941 segments rng)
1942 (while (> i 0)
1943 (setq i (- i 2))
1944 (setq rng (aref update-rng i))
1945 (if (and (<= 0 (cadr rng)) (< (cadr rng) tail)
1946 (<= tail buf-len))
1947 (setq segments
1948 (cons (substring mac-ts-active-input-buf (cadr rng) tail)
1949 segments)))
1950 (setq tail (car rng))
1951 (setq rng (aref update-rng (1+ i)))
1952 (if (and (<= 0 (car rng)) (< (car rng) (cadr rng))
1953 (<= (cadr rng) (length text)))
1954 (setq segments
1955 (cons (substring text (car rng) (cadr rng))
1956 segments))))
1957 (if (and (< 0 tail) (<= tail buf-len))
1958 (setq segments
1959 (cons (substring mac-ts-active-input-buf 0 tail)
1960 segments)))
1961 (setq mac-ts-active-input-buf (apply 'concat segments))))
1962 (setq buf-len (length mac-ts-active-input-buf))
1963 ;; Confirm (a part of) inline input session.
1964 (cond ((< fix-len 0)
1965 ;; Entire inline session is being confirmed.
1966 (setq confirmed mac-ts-active-input-buf)
1967 (setq mac-ts-active-input-buf ""))
1968 ((= fix-len 0)
1969 ;; None of the text is being confirmed (yet).
1970 (setq confirmed ""))
1972 (if (> fix-len buf-len)
1973 (setq fix-len buf-len))
1974 (setq confirmed (substring mac-ts-active-input-buf 0 fix-len))
1975 (setq mac-ts-active-input-buf
1976 (substring mac-ts-active-input-buf fix-len))))
1977 (setq buf-len (length mac-ts-active-input-buf))
1978 ;; Update highlighting and the caret position in the new inline
1979 ;; input session.
1980 (remove-text-properties 0 buf-len '(cursor nil) mac-ts-active-input-buf)
1981 (mapc (lambda (rng)
1982 (cond ((and (= (nth 2 rng) 1) ; kTSMHiliteCaretPosition
1983 (<= 0 (car rng)) (< (car rng) buf-len))
1984 (put-text-property (car rng) buf-len
1985 'cursor t mac-ts-active-input-buf))
1986 ((and (<= 0 (car rng)) (< (car rng) (cadr rng))
1987 (<= (cadr rng) buf-len))
1988 (put-text-property (car rng) (cadr rng) 'face
1989 (cdr (assq (nth 2 rng)
1990 mac-ts-hilite-style-faces))
1991 mac-ts-active-input-buf))))
1992 hilite-rng)
1993 confirmed))
1995 (defun mac-split-string-by-property-change (string)
1996 (let ((tail (length string))
1997 head result)
1998 (unless (= tail 0)
1999 (while (setq head (previous-property-change tail string)
2000 result (cons (substring string (or head 0) tail) result)
2001 tail head)))
2002 result))
2004 (defun mac-replace-untranslated-utf-8-chars (string &optional to-string)
2005 (or to-string (setq to-string "\e$,3u=\e(B"))
2006 (mapconcat
2007 (lambda (str)
2008 (if (get-text-property 0 'untranslated-utf-8 str) to-string str))
2009 (mac-split-string-by-property-change string)
2010 ""))
2012 (defun mac-keyboard-translate-char (ch)
2013 (if (and (char-valid-p ch)
2014 (or (char-table-p keyboard-translate-table)
2015 (and (or (stringp keyboard-translate-table)
2016 (vectorp keyboard-translate-table))
2017 (> (length keyboard-translate-table) ch))))
2018 (or (aref keyboard-translate-table ch) ch)
2019 ch))
2021 (defun mac-unread-string (string)
2022 ;; Unread characters and insert them in a keyboard macro being
2023 ;; defined.
2024 (apply 'isearch-unread
2025 (mapcar 'mac-keyboard-translate-char
2026 (mac-replace-untranslated-utf-8-chars string))))
2028 (defun mac-ts-update-active-input-area (event)
2029 "Update Mac TSM active input area according to EVENT.
2030 The confirmed text is converted to Emacs input events and pushed
2031 into `unread-command-events'. The unconfirmed text is displayed
2032 either in the current buffer or in the echo area."
2033 (interactive "e")
2034 (let* ((ae (mac-event-ae event))
2035 (type-text (mac-ae-parameter ae "tstx"))
2036 (text (or (cdr type-text) ""))
2037 (decode-fun (if (equal (car type-text) "TEXT")
2038 'mac-TEXT-to-string 'mac-utxt-to-string))
2039 (script-language (mac-ae-script-language ae "tssl"))
2040 (coding (or (cdr (assq (car script-language)
2041 mac-script-code-coding-systems))
2042 'mac-roman))
2043 (fix-len (mac-ae-number ae "tsfx"))
2044 ;; Optional parameters
2045 (hilite-rng (mac-ae-text-range-array ae "tshi"))
2046 (update-rng (mac-ae-text-range-array ae "tsup"))
2047 ;;(pin-rng (mac-bytes-to-text-range (cdr (mac-ae-parameter ae "tspn" "txrn"))))
2048 ;;(clause-offsets (cdr (mac-ae-parameter ae "tscl" "ofay")))
2049 (seqno (mac-ae-number ae "tsSn"))
2050 confirmed)
2051 (unless (= seqno mac-ts-update-active-input-area-seqno)
2052 ;; Reset internal states if sequence number is out of sync.
2053 (setq mac-ts-active-input-buf ""))
2054 (setq confirmed
2055 (mac-ts-update-active-input-buf text fix-len hilite-rng update-rng))
2056 (let ((use-echo-area
2057 (or isearch-mode
2058 (and cursor-in-echo-area (current-message))
2059 ;; Overlay strings are not shown in some cases.
2060 (get-char-property (point) 'invisible)
2061 (and (not (bobp))
2062 (or (and (get-char-property (point) 'display)
2063 (eq (get-char-property (1- (point)) 'display)
2064 (get-char-property (point) 'display)))
2065 (and (get-char-property (point) 'composition)
2066 (eq (get-char-property (1- (point)) 'composition)
2067 (get-char-property (point) 'composition)))))))
2068 active-input-string caret-seen)
2069 ;; Decode the active input area text with inheriting faces and
2070 ;; the caret position.
2071 (setq active-input-string
2072 (mapconcat
2073 (lambda (str)
2074 (let ((decoded (funcall decode-fun str coding)))
2075 (put-text-property 0 (length decoded) 'face
2076 (get-text-property 0 'face str) decoded)
2077 (when (and (not caret-seen)
2078 (get-text-property 0 'cursor str))
2079 (setq caret-seen t)
2080 (if (or use-echo-area (null cursor-type))
2081 (put-text-property 0 1 'face 'mac-ts-caret-position
2082 decoded)
2083 (put-text-property 0 1 'cursor t decoded)))
2084 decoded))
2085 (mac-split-string-by-property-change mac-ts-active-input-buf)
2086 ""))
2087 (put-text-property 0 (length active-input-string)
2088 'mac-ts-active-input-string t active-input-string)
2089 (if use-echo-area
2090 (let ((msg (current-message))
2091 message-log-max)
2092 (if (and msg
2093 ;; Don't get confused by previously displayed
2094 ;; `active-input-string'.
2095 (null (get-text-property 0 'mac-ts-active-input-string
2096 msg)))
2097 (setq msg (propertize msg 'display
2098 (concat msg active-input-string)))
2099 (setq msg active-input-string))
2100 (message "%s" msg)
2101 (overlay-put mac-ts-active-input-overlay 'before-string nil))
2102 (move-overlay mac-ts-active-input-overlay
2103 (point) (point) (current-buffer))
2104 (overlay-put mac-ts-active-input-overlay 'before-string
2105 active-input-string))
2106 (mac-unread-string (funcall decode-fun confirmed coding)))
2107 ;; The event is successfully processed. Sync the sequence number.
2108 (setq mac-ts-update-active-input-area-seqno (1+ seqno))))
2110 (defun mac-ts-unicode-for-key-event (event)
2111 "Convert Unicode key EVENT to Emacs key events and unread them."
2112 (interactive "e")
2113 (let* ((ae (mac-event-ae event))
2114 (text (cdr (mac-ae-parameter ae "tstx" "utxt")))
2115 (script-language (mac-ae-script-language ae "tssl"))
2116 (coding (or (cdr (assq (car script-language)
2117 mac-script-code-coding-systems))
2118 'mac-roman)))
2119 (if text
2120 (mac-unread-string (mac-utxt-to-string text coding)))))
2122 ;; kEventClassTextInput/kEventTextInputUpdateActiveInputArea
2123 (define-key mac-apple-event-map [text-input update-active-input-area]
2124 'mac-ts-update-active-input-area)
2125 ;; kEventClassTextInput/kEventTextInputUnicodeForKeyEvent
2126 (define-key mac-apple-event-map [text-input unicode-for-key-event]
2127 'mac-ts-unicode-for-key-event)
2129 ;;; Services
2130 (defun mac-service-open-file ()
2131 "Open the file specified by the selection value for Services."
2132 (interactive)
2133 ;; The selection seems not to contain the file name as
2134 ;; public.utf16-plain-text data on Mac OS X 10.4.
2135 (dnd-open-file (x-get-selection mac-service-selection 'public.file-url) nil))
2137 (defun mac-service-open-selection ()
2138 "Create a new buffer containing the selection value for Services."
2139 (interactive)
2140 (switch-to-buffer (generate-new-buffer "*untitled*"))
2141 (insert (x-selection-value mac-service-selection))
2142 (sit-for 0)
2143 (save-buffer) ; It pops up the save dialog.
2146 (defun mac-service-mail-selection ()
2147 "Prepare a mail buffer containing the selection value for Services."
2148 (interactive)
2149 (compose-mail)
2150 (rfc822-goto-eoh)
2151 (forward-line 1)
2152 (insert (x-selection-value mac-service-selection) "\n"))
2154 (defun mac-service-mail-to ()
2155 "Prepare a mail buffer to be sent to the selection value for Services."
2156 (interactive)
2157 (compose-mail (x-selection-value mac-service-selection)))
2159 (defun mac-service-insert-text ()
2160 "Insert the selection value for Services."
2161 (interactive)
2162 (let ((text (x-selection-value mac-service-selection)))
2163 (if (not buffer-read-only)
2164 (insert text)
2165 (kill-new text)
2166 (message
2167 (substitute-command-keys
2168 "The text from the Services menu can be accessed with \\[yank]")))))
2170 ;; kEventClassService/kEventServicePaste
2171 (define-key mac-apple-event-map [service paste] 'mac-service-insert-text)
2172 ;; kEventClassService/kEventServicePerform
2173 (define-key mac-apple-event-map [service perform open-file]
2174 'mac-service-open-file)
2175 (define-key mac-apple-event-map [service perform open-selection]
2176 'mac-service-open-selection)
2177 (define-key mac-apple-event-map [service perform mail-selection]
2178 'mac-service-mail-selection)
2179 (define-key mac-apple-event-map [service perform mail-to]
2180 'mac-service-mail-to)
2182 (defun mac-dispatch-apple-event (event)
2183 "Dispatch EVENT according to the keymap `mac-apple-event-map'."
2184 (interactive "e")
2185 (let* ((binding (lookup-key mac-apple-event-map (mac-event-spec event)))
2186 (ae (mac-event-ae event))
2187 (service-message (and (keymapp binding)
2188 (cdr (mac-ae-parameter ae "svmg")))))
2189 (when service-message
2190 (setq service-message
2191 (intern (decode-coding-string service-message 'utf-8)))
2192 (setq binding (lookup-key binding (vector service-message))))
2193 ;; Replace (cadr event) with a dummy position so that event-start
2194 ;; returns it.
2195 (setcar (cdr event) (list (selected-window) (point) '(0 . 0) 0))
2196 (if (null (mac-ae-parameter ae 'emacs-suspension-id))
2197 (command-execute binding nil (vector event) t)
2198 (condition-case err
2199 (progn
2200 (command-execute binding nil (vector event) t)
2201 (mac-resume-apple-event ae))
2202 (error
2203 (mac-ae-set-reply-parameter ae "errs"
2204 (cons "TEXT" (error-message-string err)))
2205 (mac-resume-apple-event ae -10000)))))) ; errAEEventFailed
2207 (define-key special-event-map [mac-apple-event] 'mac-dispatch-apple-event)
2209 ;; Processing of Apple events are deferred at the startup time. For
2210 ;; example, files dropped onto the Emacs application icon can only be
2211 ;; processed when the initial frame has been created: this is where
2212 ;; the files should be opened.
2213 (add-hook 'after-init-hook 'mac-process-deferred-apple-events)
2215 (run-with-idle-timer 5 t 'mac-cleanup-expired-apple-events)
2218 ;;;; Drag and drop
2220 (defcustom mac-dnd-types-alist
2221 '(("furl" . mac-dnd-handle-furl)
2222 ("hfs " . mac-dnd-handle-hfs)
2223 ("utxt" . mac-dnd-insert-utxt)
2224 ("TEXT" . mac-dnd-insert-TEXT)
2225 ("TIFF" . mac-dnd-insert-TIFF))
2226 "Which function to call to handle a drop of that type.
2227 The function takes three arguments, WINDOW, ACTION and DATA.
2228 WINDOW is where the drop occurred, ACTION is always `private' on
2229 Mac. DATA is the drop data. Unlike the x-dnd counterpart, the
2230 return value of the function is not significant.
2232 See also `mac-dnd-known-types'."
2233 :version "22.1"
2234 :type 'alist
2235 :group 'mac)
2237 (defun mac-dnd-handle-furl (window action data)
2238 (dnd-handle-one-url window action (mac-furl-to-string data)))
2240 (defun mac-dnd-handle-hfs (window action data)
2241 ;; struct HFSFlavor {
2242 ;; OSType fileType;
2243 ;; OSType fileCreator;
2244 ;; UInt16 fdFlags;
2245 ;; FSSpec fileSpec;
2246 ;; };
2247 (let* ((file-name (mac-coerce-ae-data "fss " (substring data 10)
2248 'undecoded-file-name))
2249 (url (concat "file://"
2250 (mapconcat 'url-hexify-string
2251 (split-string file-name "/") "/"))))
2252 (dnd-handle-one-url window action url)))
2254 (defun mac-dnd-insert-utxt (window action data)
2255 (dnd-insert-text window action (mac-utxt-to-string data)))
2257 (defun mac-dnd-insert-TEXT (window action data)
2258 (dnd-insert-text window action (mac-TEXT-to-string data)))
2260 (defun mac-dnd-insert-TIFF (window action data)
2261 (dnd-insert-text window action (mac-TIFF-to-string data)))
2263 (defun mac-dnd-drop-data (event frame window data type &optional action)
2264 (or action (setq action 'private))
2265 (let* ((type-info (assoc type mac-dnd-types-alist))
2266 (handler (cdr type-info))
2267 (w (posn-window (event-start event))))
2268 (when handler
2269 (if (and (window-live-p w)
2270 (not (window-minibuffer-p w))
2271 (not (window-dedicated-p w)))
2272 ;; If dropping in an ordinary window which we could use,
2273 ;; let dnd-open-file-other-window specify what to do.
2274 (progn
2275 (when (not mouse-yank-at-point)
2276 (goto-char (posn-point (event-start event))))
2277 (funcall handler window action data))
2278 ;; If we can't display the file here,
2279 ;; make a new window for it.
2280 (let ((dnd-open-file-other-window t))
2281 (select-frame frame)
2282 (funcall handler window action data))))))
2284 (defun mac-dnd-handle-drag-n-drop-event (event)
2285 "Receive drag and drop events."
2286 (interactive "e")
2287 (let ((window (posn-window (event-start event)))
2288 (ae (mac-event-ae event))
2289 action)
2290 (when (windowp window) (select-window window))
2291 (if (memq 'option (mac-ae-keyboard-modifiers ae))
2292 (setq action 'copy))
2293 (dolist (item (mac-ae-list ae))
2294 (if (not (equal (car item) "null"))
2295 (mac-dnd-drop-data event (selected-frame) window
2296 (cdr item) (car item) action)))))
2298 ;;; Do the actual Windows setup here; the above code just defines
2299 ;;; functions and variables that we use now.
2301 (setq command-line-args (x-handle-args command-line-args))
2303 ;;; Make sure we have a valid resource name.
2304 (or (stringp x-resource-name)
2305 (let (i)
2306 (setq x-resource-name (invocation-name))
2308 ;; Change any . or * characters in x-resource-name to hyphens,
2309 ;; so as not to choke when we use it in X resource queries.
2310 (while (setq i (string-match "[.*]" x-resource-name))
2311 (aset x-resource-name i ?-))))
2313 (if (x-display-list)
2314 ;; On Mac OS 8/9, Most coding systems used in code conversion for
2315 ;; font names are not ready at the time when the terminal frame is
2316 ;; created. So we reconstruct font name table for the initial
2317 ;; frame.
2318 (mac-clear-font-name-table)
2319 (x-open-connection "Mac"
2320 x-command-line-resources
2321 ;; Exit Emacs with fatal error if this fails.
2324 (setq frame-creation-function 'x-create-frame-with-faces)
2326 (defvar mac-font-encoder-list
2327 '(("mac-roman" mac-roman-encoder
2328 ccl-encode-mac-roman-font "%s")
2329 ("mac-centraleurroman" encode-mac-centraleurroman
2330 ccl-encode-mac-centraleurroman-font "%s ce")
2331 ("mac-cyrillic" encode-mac-cyrillic
2332 ccl-encode-mac-cyrillic-font "%s cy")
2333 ("mac-symbol" mac-symbol-encoder
2334 ccl-encode-mac-symbol-font "symbol")
2335 ("mac-dingbats" mac-dingbats-encoder
2336 ccl-encode-mac-dingbats-font "zapf dingbats")))
2338 (let ((encoder-list
2339 (mapcar (lambda (lst) (nth 1 lst)) mac-font-encoder-list))
2340 (charset-list
2341 '(latin-iso8859-2
2342 latin-iso8859-3 latin-iso8859-4
2343 cyrillic-iso8859-5 greek-iso8859-7 hebrew-iso8859-8
2344 latin-iso8859-9 latin-iso8859-14 latin-iso8859-15)))
2345 (dolist (encoder encoder-list)
2346 (let ((table (get encoder 'translation-table)))
2347 (dolist (charset charset-list)
2348 (dotimes (i 96)
2349 (let* ((c (make-char charset (+ i 32)))
2350 (mu (aref ucs-mule-to-mule-unicode c))
2351 (mac-encoded (and mu (aref table mu))))
2352 (if mac-encoded
2353 (aset table c mac-encoded))))))))
2355 ;; We assume none of official dim2 charsets (0x90..0x99) are encoded
2356 ;; to these fonts.
2358 (define-ccl-program ccl-encode-mac-roman-font
2360 (if (r0 <= ?\xef)
2361 (translate-character mac-roman-encoder r0 r1)
2362 ((r1 <<= 7)
2363 (r1 |= r2)
2364 (translate-character mac-roman-encoder r0 r1))))
2365 "CCL program for Mac Roman font")
2367 (define-ccl-program ccl-encode-mac-centraleurroman-font
2369 (if (r0 <= ?\xef)
2370 (translate-character encode-mac-centraleurroman r0 r1)
2371 ((r1 <<= 7)
2372 (r1 |= r2)
2373 (translate-character encode-mac-centraleurroman r0 r1))))
2374 "CCL program for Mac Central European Roman font")
2376 (define-ccl-program ccl-encode-mac-cyrillic-font
2378 (if (r0 <= ?\xef)
2379 (translate-character encode-mac-cyrillic r0 r1)
2380 ((r1 <<= 7)
2381 (r1 |= r2)
2382 (translate-character encode-mac-cyrillic r0 r1))))
2383 "CCL program for Mac Cyrillic font")
2385 (define-ccl-program ccl-encode-mac-symbol-font
2387 (if (r0 <= ?\xef)
2388 (translate-character mac-symbol-encoder r0 r1)
2389 ((r1 <<= 7)
2390 (r1 |= r2)
2391 (translate-character mac-symbol-encoder r0 r1))))
2392 "CCL program for Mac Symbol font")
2394 (define-ccl-program ccl-encode-mac-dingbats-font
2396 (if (r0 <= ?\xef)
2397 (translate-character mac-dingbats-encoder r0 r1)
2398 ((r1 <<= 7)
2399 (r1 |= r2)
2400 (translate-character mac-dingbats-encoder r0 r1))))
2401 "CCL program for Mac Dingbats font")
2404 (setq font-ccl-encoder-alist
2405 (nconc
2406 (mapcar (lambda (lst) (cons (nth 0 lst) (nth 2 lst)))
2407 mac-font-encoder-list)
2408 font-ccl-encoder-alist))
2410 (defconst mac-char-fontspec-list
2411 ;; Directly operate on a char-table instead of a fontset so that it
2412 ;; may not create a dummy fontset.
2413 (let ((template (make-char-table 'fontset)))
2414 (dolist
2415 (font-encoder
2416 (nreverse
2417 (mapcar (lambda (lst)
2418 (cons (cons (nth 3 lst) (nth 0 lst)) (nth 1 lst)))
2419 mac-font-encoder-list)))
2420 (let ((font (car font-encoder))
2421 (encoder (cdr font-encoder)))
2422 (map-char-table
2423 (lambda (key val)
2424 (or (null val)
2425 (generic-char-p key)
2426 (memq (char-charset key)
2427 '(ascii eight-bit-control eight-bit-graphic))
2428 (aset template key font)))
2429 (get encoder 'translation-table))))
2431 ;; Like fontset-info, but extend a range only if its "to" part is
2432 ;; the predecessor of the current char.
2433 (let* ((last '((0 nil)))
2434 (accumulator last)
2435 last-char-or-range last-char last-elt)
2436 (map-char-table
2437 (lambda (char elt)
2438 (when elt
2439 (setq last-char-or-range (car (car last))
2440 last-char (if (consp last-char-or-range)
2441 (cdr last-char-or-range)
2442 last-char-or-range)
2443 last-elt (cdr (car last)))
2444 (if (and (eq elt last-elt)
2445 (= char (1+ last-char))
2446 (eq (char-charset char) (char-charset last-char)))
2447 (if (consp last-char-or-range)
2448 (setcdr last-char-or-range char)
2449 (setcar (car last) (cons last-char char)))
2450 (setcdr last (list (cons char elt)))
2451 (setq last (cdr last)))))
2452 template)
2453 (cdr accumulator))))
2455 (defun fontset-add-mac-fonts (fontset &optional base-family)
2456 "Add font-specs for Mac fonts to FONTSET.
2457 The added font-specs are determined by BASE-FAMILY and the value
2458 of `mac-char-fontspec-list', which is a list
2459 of (CHARACTER-OR-RANGE . (FAMILY-FORMAT . REGISTRY)). If
2460 BASE-FAMILY is nil, the font family in the added font-specs is
2461 also nil. If BASE-FAMILY is a string, `%s' in FAMILY-FORMAT is
2462 replaced with the string. Otherwise, `%s' in FAMILY-FORMAT is
2463 replaced with the ASCII font family name in FONTSET."
2464 (if base-family
2465 (if (stringp base-family)
2466 (setq base-family (downcase base-family))
2467 (let ((ascii-font (fontset-font fontset (charset-id 'ascii))))
2468 (if ascii-font
2469 (setq base-family
2470 (aref (x-decompose-font-name
2471 (downcase (x-resolve-font-name ascii-font)))
2472 xlfd-regexp-family-subnum))))))
2473 (let (fontspec-cache fontspec)
2474 (dolist (char-fontspec mac-char-fontspec-list)
2475 (setq fontspec (cdr (assq (cdr char-fontspec) fontspec-cache)))
2476 (when (null fontspec)
2477 (setq fontspec
2478 (cons (and base-family
2479 (format (car (cdr char-fontspec)) base-family))
2480 (cdr (cdr char-fontspec))))
2481 (setq fontspec-cache (cons (cons (cdr char-fontspec) fontspec)
2482 fontspec-cache)))
2483 (set-fontset-font fontset (car char-fontspec) fontspec))))
2485 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
2486 fontset-name)
2487 "Create a fontset from a Mac roman font FONT.
2489 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
2490 omitted, `x-resolve-font-name' is called to get the resolved name. At
2491 this time, if FONT is not available, error is signaled.
2493 Optional 2nd arg FONTSET-NAME is a string to be used in
2494 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
2495 an appropriate name is generated automatically.
2497 It returns a name of the created fontset."
2498 (let ((fontset
2499 (create-fontset-from-ascii-font font resolved-font fontset-name)))
2500 (fontset-add-mac-fonts fontset t)
2501 fontset))
2503 ;; Adjust Courier font specifications in x-fixed-font-alist.
2504 (let ((courier-fonts (assoc "Courier" x-fixed-font-alist)))
2505 (if courier-fonts
2506 (dolist (label-fonts (cdr courier-fonts))
2507 (setcdr label-fonts
2508 (mapcar
2509 (lambda (font)
2510 (if (string-match "\\`-adobe-courier-\\([^-]*\\)-\\(.\\)-\\(.*\\)-iso8859-1\\'" font)
2511 (replace-match
2512 (if (string= (match-string 2 font) "o")
2513 "-*-courier-\\1-i-\\3-*-*"
2514 "-*-courier-\\1-\\2-\\3-*-*")
2515 t nil font)
2516 font))
2517 (cdr label-fonts))))))
2519 ;; Setup the default fontset.
2520 (setup-default-fontset)
2521 (cond ((x-list-fonts "*-iso10646-1" nil nil 1)
2522 ;; Use ATSUI (if available) for the following charsets.
2523 (dolist
2524 (charset '(latin-iso8859-1
2525 latin-iso8859-2 latin-iso8859-3 latin-iso8859-4
2526 thai-tis620 greek-iso8859-7 arabic-iso8859-6
2527 hebrew-iso8859-8 cyrillic-iso8859-5
2528 latin-iso8859-9 latin-iso8859-15 latin-iso8859-14
2529 japanese-jisx0212 chinese-sisheng ipa
2530 vietnamese-viscii-lower vietnamese-viscii-upper
2531 lao ethiopic tibetan))
2532 (set-fontset-font nil charset '(nil . "iso10646-1"))))
2533 ((null (x-list-fonts "*-iso8859-1" nil nil 1))
2534 ;; Add Mac-encoding fonts unless ETL fonts are installed.
2535 (fontset-add-mac-fonts "fontset-default")))
2537 ;; Create a fontset that uses mac-roman font. With this fontset,
2538 ;; characters decoded from mac-roman encoding (ascii, latin-iso8859-1,
2539 ;; and mule-unicode-xxxx-yyyy) are displayed by a mac-roman font.
2540 (create-fontset-from-fontset-spec
2541 "-etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard,
2542 ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman")
2543 (fontset-add-mac-fonts "fontset-standard" t)
2545 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
2546 (create-fontset-from-x-resource)
2548 ;; Try to create a fontset from a font specification which comes
2549 ;; from initial-frame-alist, default-frame-alist, or X resource.
2550 ;; A font specification in command line argument (i.e. -fn XXXX)
2551 ;; should be already in default-frame-alist as a `font'
2552 ;; parameter. However, any font specifications in site-start
2553 ;; library, user's init file (.emacs), and default.el are not
2554 ;; yet handled here.
2556 (let ((font (or (cdr (assq 'font initial-frame-alist))
2557 (cdr (assq 'font default-frame-alist))
2558 (x-get-resource "font" "Font")))
2559 xlfd-fields resolved-name)
2560 (if (and font
2561 (not (query-fontset font))
2562 (setq resolved-name (x-resolve-font-name font))
2563 (setq xlfd-fields (x-decompose-font-name font)))
2564 (if (string= "fontset" (aref xlfd-fields xlfd-regexp-registry-subnum))
2565 (new-fontset font (x-complement-fontset-spec xlfd-fields nil))
2566 ;; Create a fontset from FONT. The fontset name is
2567 ;; generated from FONT.
2568 (if (and (string= "mac" (aref xlfd-fields xlfd-regexp-registry-subnum))
2569 (string= "roman" (aref xlfd-fields xlfd-regexp-encoding-subnum)))
2570 (create-fontset-from-mac-roman-font font resolved-name "startup")
2571 (create-fontset-from-ascii-font font resolved-name "startup")))))
2573 ;; Apply a geometry resource to the initial frame. Put it at the end
2574 ;; of the alist, so that anything specified on the command line takes
2575 ;; precedence.
2576 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
2577 parsed)
2578 (if res-geometry
2579 (progn
2580 (setq parsed (x-parse-geometry res-geometry))
2581 ;; If the resource specifies a position,
2582 ;; call the position and size "user-specified".
2583 (if (or (assq 'top parsed) (assq 'left parsed))
2584 (setq parsed (cons '(user-position . t)
2585 (cons '(user-size . t) parsed))))
2586 ;; All geometry parms apply to the initial frame.
2587 (setq initial-frame-alist (append initial-frame-alist parsed))
2588 ;; The size parms apply to all frames. Don't set it if there are
2589 ;; sizes there already (from command line).
2590 (if (and (assq 'height parsed)
2591 (not (assq 'height default-frame-alist)))
2592 (setq default-frame-alist
2593 (cons (cons 'height (cdr (assq 'height parsed)))
2594 default-frame-alist)))
2595 (if (and (assq 'width parsed)
2596 (not (assq 'width default-frame-alist)))
2597 (setq default-frame-alist
2598 (cons (cons 'width (cdr (assq 'width parsed)))
2599 default-frame-alist))))))
2601 ;; Check the reverseVideo resource.
2602 (let ((case-fold-search t))
2603 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
2604 (if (and rv
2605 (string-match "^\\(true\\|yes\\|on\\)$" rv))
2606 (setq default-frame-alist
2607 (cons '(reverse . t) default-frame-alist)))))
2609 (defun x-win-suspend-error ()
2610 (error "Suspending an Emacs running under Mac makes no sense"))
2611 (add-hook 'suspend-hook 'x-win-suspend-error)
2613 ;;; Arrange for the kill and yank functions to set and check the clipboard.
2614 (setq interprogram-cut-function 'x-select-text)
2615 (setq interprogram-paste-function 'x-get-selection-value)
2617 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
2619 ;;; Turn off window-splitting optimization; Mac is usually fast enough
2620 ;;; that this is only annoying.
2621 (setq split-window-keep-point t)
2623 ;; Don't show the frame name; that's redundant.
2624 (setq-default mode-line-frame-identification " ")
2626 ;; Turn on support for mouse wheels.
2627 (mouse-wheel-mode 1)
2630 ;; Enable CLIPBOARD copy/paste through menu bar commands.
2631 (menu-bar-enable-clipboard)
2633 ;; Initiate drag and drop
2635 (define-key special-event-map [drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
2638 ;;;; Non-toolkit Scroll bars
2640 (unless x-toolkit-scroll-bars
2642 ;; for debugging
2643 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
2645 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
2647 (global-set-key
2648 [vertical-scroll-bar down-mouse-1]
2649 'mac-handle-scroll-bar-event)
2651 (global-unset-key [vertical-scroll-bar drag-mouse-1])
2652 (global-unset-key [vertical-scroll-bar mouse-1])
2654 (defun mac-handle-scroll-bar-event (event)
2655 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
2656 (interactive "e")
2657 (let* ((position (event-start event))
2658 (window (nth 0 position))
2659 (bar-part (nth 4 position)))
2660 (select-window window)
2661 (cond
2662 ((eq bar-part 'up)
2663 (goto-char (window-start window))
2664 (mac-scroll-down-line))
2665 ((eq bar-part 'above-handle)
2666 (mac-scroll-down))
2667 ((eq bar-part 'handle)
2668 (scroll-bar-drag event))
2669 ((eq bar-part 'below-handle)
2670 (mac-scroll-up))
2671 ((eq bar-part 'down)
2672 (goto-char (window-start window))
2673 (mac-scroll-up-line)))))
2675 (defun mac-scroll-ignore-events ()
2676 ;; Ignore confusing non-mouse events
2677 (while (not (memq (car-safe (read-event))
2678 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
2680 (defun mac-scroll-down ()
2681 (track-mouse
2682 (mac-scroll-ignore-events)
2683 (scroll-down)))
2685 (defun mac-scroll-down-line ()
2686 (track-mouse
2687 (mac-scroll-ignore-events)
2688 (scroll-down 1)))
2690 (defun mac-scroll-up ()
2691 (track-mouse
2692 (mac-scroll-ignore-events)
2693 (scroll-up)))
2695 (defun mac-scroll-up-line ()
2696 (track-mouse
2697 (mac-scroll-ignore-events)
2698 (scroll-up 1)))
2703 ;;;; Others
2705 (unless (eq system-type 'darwin)
2706 ;; This variable specifies the Unix program to call (as a process) to
2707 ;; determine the amount of free space on a file system (defaults to
2708 ;; df). If it is not set to nil, ls-lisp will not work correctly
2709 ;; unless an external application df is implemented on the Mac.
2710 (setq directory-free-space-program nil)
2712 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
2713 ;; expand filenames Note no subprocess for the shell is actually
2714 ;; started (see run_mac_command in sysdep.c).
2715 (setq shell-file-name "sh")
2717 ;; Some system variables are encoded with the system script code.
2718 (dolist (v '(system-name
2719 emacs-build-system ; Mac OS 9 version cannot dump
2720 user-login-name user-real-login-name user-full-name))
2721 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
2723 ;; Now the default directory is changed to the user's home directory
2724 ;; in emacs.c if invoked from the WindowServer (with -psn_* option).
2725 ;; (if (string= default-directory "/")
2726 ;; (cd "~"))
2728 ;; Darwin 6- pty breakage is now controlled from the C code so that
2729 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
2730 ;; (setq process-connection-type t)
2732 ;; Assume that fonts are always scalable on the Mac. This sometimes
2733 ;; results in characters with jagged edges. However, without it,
2734 ;; fonts with both truetype and bitmap representations but no italic
2735 ;; or bold bitmap versions will not display these variants correctly.
2736 (setq scalable-fonts-allowed t)
2738 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
2739 ;;; mac-win.el ends here