(define-ccl-program): Add `doc-string' declaration.
[emacs.git] / lisp / term / mac-win.el
blob4d80ca904a553ff58f7736334c8d1c2aed82f664
1 ;;; mac-win.el --- parse switches controlling interface with Mac window system -*-coding: utf-8-*-
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 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Mac-win.el: this file is loaded from ../lisp/startup.el when it recognizes
27 ;; that Mac windows are to be used. Command line switches are parsed and those
28 ;; pertaining to Mac are processed and removed from the command line. The
29 ;; Mac display is opened and hooks are set for popping up the initial window.
31 ;; startup.el will then examine startup files, and eventually call the hooks
32 ;; which create the first window(s).
34 ;;; Code:
36 ;; These are the standard X switches from the Xt Initialize.c file of
37 ;; Release 4.
39 ;; Command line Resource Manager string
41 ;; +rv *reverseVideo
42 ;; +synchronous *synchronous
43 ;; -background *background
44 ;; -bd *borderColor
45 ;; -bg *background
46 ;; -bordercolor *borderColor
47 ;; -borderwidth .borderWidth
48 ;; -bw .borderWidth
49 ;; -display .display
50 ;; -fg *foreground
51 ;; -fn *font
52 ;; -font *font
53 ;; -foreground *foreground
54 ;; -geometry .geometry
55 ;; -iconic .iconic
56 ;; -name .name
57 ;; -reverse *reverseVideo
58 ;; -rv *reverseVideo
59 ;; -selectionTimeout .selectionTimeout
60 ;; -synchronous *synchronous
61 ;; -xrm
63 ;; An alist of X options and the function which handles them. See
64 ;; ../startup.el.
66 ;; (if (not (eq window-system 'mac))
67 ;; (error "%s: Loading mac-win.el but not compiled for Mac" (invocation-name)))
69 (require 'frame)
70 (require 'mouse)
71 (require 'scroll-bar)
72 (require 'faces)
73 (require 'select)
74 (require 'menu-bar)
75 (require 'fontset)
76 (require 'dnd)
78 (defvar mac-charset-info-alist)
79 (defvar mac-service-selection)
80 (defvar mac-system-script-code)
81 (defvar mac-apple-event-map)
82 (defvar mac-font-panel-mode)
83 (defvar mac-ts-active-input-overlay)
84 (defvar mac-ts-active-input-buf)
85 (defvar x-invocation-args)
86 (declare-function mac-code-convert-string "mac.c")
87 (declare-function mac-coerce-ae-data "mac.c")
88 (declare-function mac-resume-apple-event "macselect.c")
89 ;; Suppress warning when compiling on non-Mac.
90 (declare-function mac-font-panel-mode "mac-win.el")
91 (declare-function mac-atsu-font-face-attributes "macfns.c")
92 (declare-function mac-ae-set-reply-parameter "macselect.c")
93 (declare-function mac-clear-font-name-table "macfns.c")
95 (defvar x-command-line-resources nil)
97 ;; Handler for switches of the form "-switch value" or "-switch".
98 (defun x-handle-switch (switch)
99 (let ((aelt (assoc switch command-line-x-option-alist)))
100 (if aelt
101 (let ((param (nth 3 aelt))
102 (value (nth 4 aelt)))
103 (if value
104 (setq default-frame-alist
105 (cons (cons param value)
106 default-frame-alist))
107 (setq default-frame-alist
108 (cons (cons param
109 (car x-invocation-args))
110 default-frame-alist)
111 x-invocation-args (cdr x-invocation-args)))))))
113 ;; Handler for switches of the form "-switch n"
114 (defun x-handle-numeric-switch (switch)
115 (let ((aelt (assoc switch command-line-x-option-alist)))
116 (if aelt
117 (let ((param (nth 3 aelt)))
118 (setq default-frame-alist
119 (cons (cons param
120 (string-to-number (car x-invocation-args)))
121 default-frame-alist)
122 x-invocation-args
123 (cdr x-invocation-args))))))
125 ;; Handle options that apply to initial frame only
126 (defun x-handle-initial-switch (switch)
127 (let ((aelt (assoc switch command-line-x-option-alist)))
128 (if aelt
129 (let ((param (nth 3 aelt))
130 (value (nth 4 aelt)))
131 (if value
132 (setq initial-frame-alist
133 (cons (cons param value)
134 initial-frame-alist))
135 (setq initial-frame-alist
136 (cons (cons param
137 (car x-invocation-args))
138 initial-frame-alist)
139 x-invocation-args (cdr x-invocation-args)))))))
141 ;; Make -iconic apply only to the initial frame!
142 (defun x-handle-iconic (switch)
143 (setq initial-frame-alist
144 (cons '(visibility . icon) initial-frame-alist)))
146 ;; Handle the -xrm option.
147 (defun x-handle-xrm-switch (switch)
148 (unless (consp x-invocation-args)
149 (error "%s: missing argument to `%s' option" (invocation-name) switch))
150 (setq x-command-line-resources
151 (if (null x-command-line-resources)
152 (car x-invocation-args)
153 (concat x-command-line-resources "\n" (car x-invocation-args))))
154 (setq x-invocation-args (cdr x-invocation-args)))
156 ;; Handle the geometry option
157 (defun x-handle-geometry (switch)
158 (let* ((geo (x-parse-geometry (car x-invocation-args)))
159 (left (assq 'left geo))
160 (top (assq 'top geo))
161 (height (assq 'height geo))
162 (width (assq 'width geo)))
163 (if (or height width)
164 (setq default-frame-alist
165 (append default-frame-alist
166 '((user-size . t))
167 (if height (list height))
168 (if width (list width)))
169 initial-frame-alist
170 (append initial-frame-alist
171 '((user-size . t))
172 (if height (list height))
173 (if width (list width)))))
174 (if (or left top)
175 (setq initial-frame-alist
176 (append initial-frame-alist
177 '((user-position . t))
178 (if left (list left))
179 (if top (list top)))))
180 (setq x-invocation-args (cdr x-invocation-args))))
182 ;; Handle the -name option. Set the variable x-resource-name
183 ;; to the option's operand; set the name of
184 ;; the initial frame, too.
185 (defun x-handle-name-switch (switch)
186 (or (consp x-invocation-args)
187 (error "%s: missing argument to `%s' option" (invocation-name) switch))
188 (setq x-resource-name (car x-invocation-args)
189 x-invocation-args (cdr x-invocation-args))
190 (setq initial-frame-alist (cons (cons 'name x-resource-name)
191 initial-frame-alist)))
193 (defvar x-display-name nil
194 "The display name specifying server and frame.")
196 (defun x-handle-display (switch)
197 (setq x-display-name (car x-invocation-args)
198 x-invocation-args (cdr x-invocation-args)))
200 (defun x-handle-args (args)
201 "Process the X-related command line options in ARGS.
202 This is done before the user's startup file is loaded. They are copied to
203 `x-invocation-args', from which the X-related things are extracted, first
204 the switch (e.g., \"-fg\") in the following code, and possible values
205 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
206 This function returns ARGS minus the arguments that have been processed."
207 ;; We use ARGS to accumulate the args that we don't handle here, to return.
208 (setq x-invocation-args args
209 args nil)
210 (while (and x-invocation-args
211 (not (equal (car x-invocation-args) "--")))
212 (let* ((this-switch (car x-invocation-args))
213 (orig-this-switch this-switch)
214 completion argval aelt handler)
215 (setq x-invocation-args (cdr x-invocation-args))
216 ;; Check for long options with attached arguments
217 ;; and separate out the attached option argument into argval.
218 (if (string-match "^--[^=]*=" this-switch)
219 (setq argval (substring this-switch (match-end 0))
220 this-switch (substring this-switch 0 (1- (match-end 0)))))
221 ;; Complete names of long options.
222 (if (string-match "^--" this-switch)
223 (progn
224 (setq completion (try-completion this-switch command-line-x-option-alist))
225 (if (eq completion t)
226 ;; Exact match for long option.
228 (if (stringp completion)
229 (let ((elt (assoc completion command-line-x-option-alist)))
230 ;; Check for abbreviated long option.
231 (or elt
232 (error "Option `%s' is ambiguous" this-switch))
233 (setq this-switch completion))))))
234 (setq aelt (assoc this-switch command-line-x-option-alist))
235 (if aelt (setq handler (nth 2 aelt)))
236 (if handler
237 (if argval
238 (let ((x-invocation-args
239 (cons argval x-invocation-args)))
240 (funcall handler this-switch))
241 (funcall handler this-switch))
242 (setq args (cons orig-this-switch args)))))
243 (nconc (nreverse args) x-invocation-args))
247 ;; Standard Mac cursor shapes
250 (defconst mac-pointer-arrow 0)
251 (defconst mac-pointer-copy-arrow 1)
252 (defconst mac-pointer-alias-arrow 2)
253 (defconst mac-pointer-contextual-menu-arrow 3)
254 (defconst mac-pointer-I-beam 4)
255 (defconst mac-pointer-cross 5)
256 (defconst mac-pointer-plus 6)
257 (defconst mac-pointer-watch 7)
258 (defconst mac-pointer-closed-hand 8)
259 (defconst mac-pointer-open-hand 9)
260 (defconst mac-pointer-pointing-hand 10)
261 (defconst mac-pointer-counting-up-hand 11)
262 (defconst mac-pointer-counting-down-hand 12)
263 (defconst mac-pointer-counting-up-and-down-hand 13)
264 (defconst mac-pointer-spinning 14)
265 (defconst mac-pointer-resize-left 15)
266 (defconst mac-pointer-resize-right 16)
267 (defconst mac-pointer-resize-left-right 17)
268 ;; Mac OS X 10.2 and later
269 (defconst mac-pointer-not-allowed 18)
270 ;; Mac OS X 10.3 and later
271 (defconst mac-pointer-resize-up 19)
272 (defconst mac-pointer-resize-down 20)
273 (defconst mac-pointer-resize-up-down 21)
274 (defconst mac-pointer-poof 22)
277 ;; Standard X cursor shapes that have Mac counterparts
280 (defconst x-pointer-left-ptr mac-pointer-arrow)
281 (defconst x-pointer-xterm mac-pointer-I-beam)
282 (defconst x-pointer-crosshair mac-pointer-cross)
283 (defconst x-pointer-plus mac-pointer-plus)
284 (defconst x-pointer-watch mac-pointer-watch)
285 (defconst x-pointer-hand2 mac-pointer-pointing-hand)
286 (defconst x-pointer-left-side mac-pointer-resize-left)
287 (defconst x-pointer-right-side mac-pointer-resize-right)
288 (defconst x-pointer-sb-h-double-arrow mac-pointer-resize-left-right)
289 (defconst x-pointer-top-side mac-pointer-resize-up)
290 (defconst x-pointer-bottom-side mac-pointer-resize-down)
291 (defconst x-pointer-sb-v-double-arrow mac-pointer-resize-up-down)
295 ;; Available colors
297 ;; The ordering of the colors is chosen for the user's convenience in
298 ;; `list-colors-display', which displays the reverse of this list.
299 ;; Roughly speaking, `list-colors-display' orders by (i) named shades
300 ;; of grey with hue 0.0, sorted by value (ii) named colors with
301 ;; saturation 1.0, sorted by hue, (iii) named non-white colors with
302 ;; saturation less than 1.0, sorted by hue, (iv) other named shades of
303 ;; white, (v) numbered colors sorted by hue, and (vi) numbered shades
304 ;; of grey.
306 (defvar x-colors
307 '("gray100" "gray99" "gray98" "gray97" "gray96" "gray95" "gray94" "gray93" "gray92"
308 "gray91" "gray90" "gray89" "gray88" "gray87" "gray86" "gray85" "gray84" "gray83"
309 "gray82" "gray81" "gray80" "gray79" "gray78" "gray77" "gray76" "gray75" "gray74"
310 "gray73" "gray72" "gray71" "gray70" "gray69" "gray68" "gray67" "gray66" "gray65"
311 "gray64" "gray63" "gray62" "gray61" "gray60" "gray59" "gray58" "gray57" "gray56"
312 "gray55" "gray54" "gray53" "gray52" "gray51" "gray50" "gray49" "gray48" "gray47"
313 "gray46" "gray45" "gray44" "gray43" "gray42" "gray41" "gray40" "gray39" "gray38"
314 "gray37" "gray36" "gray35" "gray34" "gray33" "gray32" "gray31" "gray30" "gray29"
315 "gray28" "gray27" "gray26" "gray25" "gray24" "gray23" "gray22" "gray21" "gray20"
316 "gray19" "gray18" "gray17" "gray16" "gray15" "gray14" "gray13" "gray12" "gray11"
317 "gray10" "gray9" "gray8" "gray7" "gray6" "gray5" "gray4" "gray3" "gray2" "gray1"
318 "gray0" "LightPink1" "LightPink2" "LightPink3" "LightPink4" "pink1" "pink2" "pink3"
319 "pink4" "PaleVioletRed1" "PaleVioletRed2" "PaleVioletRed3" "PaleVioletRed4"
320 "LavenderBlush1" "LavenderBlush2" "LavenderBlush3" "LavenderBlush4" "VioletRed1"
321 "VioletRed2" "VioletRed3" "VioletRed4" "HotPink1" "HotPink2" "HotPink3" "HotPink4"
322 "DeepPink1" "DeepPink2" "DeepPink3" "DeepPink4" "maroon1" "maroon2" "maroon3"
323 "maroon4" "orchid1" "orchid2" "orchid3" "orchid4" "plum1" "plum2" "plum3" "plum4"
324 "thistle1" "thistle2" "thistle3" "thistle4" "MediumOrchid1" "MediumOrchid2"
325 "MediumOrchid3" "MediumOrchid4" "DarkOrchid1" "DarkOrchid2" "DarkOrchid3"
326 "DarkOrchid4" "purple1" "purple2" "purple3" "purple4" "MediumPurple1"
327 "MediumPurple2" "MediumPurple3" "MediumPurple4" "SlateBlue1" "SlateBlue2"
328 "SlateBlue3" "SlateBlue4" "RoyalBlue1" "RoyalBlue2" "RoyalBlue3" "RoyalBlue4"
329 "LightSteelBlue1" "LightSteelBlue2" "LightSteelBlue3" "LightSteelBlue4" "SlateGray1"
330 "SlateGray2" "SlateGray3" "SlateGray4" "DodgerBlue1" "DodgerBlue2" "DodgerBlue3"
331 "DodgerBlue4" "SteelBlue1" "SteelBlue2" "SteelBlue3" "SteelBlue4" "SkyBlue1"
332 "SkyBlue2" "SkyBlue3" "SkyBlue4" "LightSkyBlue1" "LightSkyBlue2" "LightSkyBlue3"
333 "LightSkyBlue4" "LightBlue1" "LightBlue2" "LightBlue3" "LightBlue4" "CadetBlue1"
334 "CadetBlue2" "CadetBlue3" "CadetBlue4" "azure1" "azure2" "azure3" "azure4"
335 "LightCyan1" "LightCyan2" "LightCyan3" "LightCyan4" "PaleTurquoise1"
336 "PaleTurquoise2" "PaleTurquoise3" "PaleTurquoise4" "DarkSlateGray1" "DarkSlateGray2"
337 "DarkSlateGray3" "DarkSlateGray4" "aquamarine1" "aquamarine2" "aquamarine3"
338 "aquamarine4" "SeaGreen1" "SeaGreen2" "SeaGreen3" "SeaGreen4" "honeydew1"
339 "honeydew2" "honeydew3" "honeydew4" "DarkSeaGreen1" "DarkSeaGreen2" "DarkSeaGreen3"
340 "DarkSeaGreen4" "PaleGreen1" "PaleGreen2" "PaleGreen3" "PaleGreen4"
341 "DarkOliveGreen1" "DarkOliveGreen2" "DarkOliveGreen3" "DarkOliveGreen4" "OliveDrab1"
342 "OliveDrab2" "OliveDrab3" "OliveDrab4" "ivory1" "ivory2" "ivory3" "ivory4"
343 "LightYellow1" "LightYellow2" "LightYellow3" "LightYellow4" "khaki1" "khaki2"
344 "khaki3" "khaki4" "LemonChiffon1" "LemonChiffon2" "LemonChiffon3" "LemonChiffon4"
345 "LightGoldenrod1" "LightGoldenrod2" "LightGoldenrod3" "LightGoldenrod4" "cornsilk1"
346 "cornsilk2" "cornsilk3" "cornsilk4" "goldenrod1" "goldenrod2" "goldenrod3"
347 "goldenrod4" "DarkGoldenrod1" "DarkGoldenrod2" "DarkGoldenrod3" "DarkGoldenrod4"
348 "wheat1" "wheat2" "wheat3" "wheat4" "NavajoWhite1" "NavajoWhite2" "NavajoWhite3"
349 "NavajoWhite4" "burlywood1" "burlywood2" "burlywood3" "burlywood4" "AntiqueWhite1"
350 "AntiqueWhite2" "AntiqueWhite3" "AntiqueWhite4" "bisque1" "bisque2" "bisque3"
351 "bisque4" "tan1" "tan2" "tan3" "tan4" "PeachPuff1" "PeachPuff2" "PeachPuff3"
352 "PeachPuff4" "seashell1" "seashell2" "seashell3" "seashell4" "chocolate1"
353 "chocolate2" "chocolate3" "chocolate4" "sienna1" "sienna2" "sienna3" "sienna4"
354 "LightSalmon1" "LightSalmon2" "LightSalmon3" "LightSalmon4" "salmon1" "salmon2"
355 "salmon3" "salmon4" "coral1" "coral2" "coral3" "coral4" "tomato1" "tomato2"
356 "tomato3" "tomato4" "MistyRose1" "MistyRose2" "MistyRose3" "MistyRose4" "snow1"
357 "snow2" "snow3" "snow4" "RosyBrown1" "RosyBrown2" "RosyBrown3" "RosyBrown4"
358 "IndianRed1" "IndianRed2" "IndianRed3" "IndianRed4" "firebrick1" "firebrick2"
359 "firebrick3" "firebrick4" "brown1" "brown2" "brown3" "brown4" "magenta1" "magenta2"
360 "magenta3" "magenta4" "blue1" "blue2" "blue3" "blue4" "DeepSkyBlue1" "DeepSkyBlue2"
361 "DeepSkyBlue3" "DeepSkyBlue4" "turquoise1" "turquoise2" "turquoise3" "turquoise4"
362 "cyan1" "cyan2" "cyan3" "cyan4" "SpringGreen1" "SpringGreen2" "SpringGreen3"
363 "SpringGreen4" "green1" "green2" "green3" "green4" "chartreuse1" "chartreuse2"
364 "chartreuse3" "chartreuse4" "yellow1" "yellow2" "yellow3" "yellow4" "gold1" "gold2"
365 "gold3" "gold4" "orange1" "orange2" "orange3" "orange4" "DarkOrange1" "DarkOrange2"
366 "DarkOrange3" "DarkOrange4" "OrangeRed1" "OrangeRed2" "OrangeRed3" "OrangeRed4"
367 "red1" "red2" "red3" "red4" "lavender blush" "ghost white" "lavender" "alice blue"
368 "azure" "light cyan" "mint cream" "honeydew" "ivory" "light goldenrod yellow"
369 "light yellow" "beige" "floral white" "old lace" "blanched almond" "moccasin"
370 "papaya whip" "bisque" "antique white" "linen" "peach puff" "seashell" "misty rose"
371 "snow" "light pink" "pink" "hot pink" "deep pink" "maroon" "pale violet red"
372 "violet red" "medium violet red" "violet" "plum" "thistle" "orchid" "medium orchid"
373 "dark orchid" "purple" "blue violet" "medium purple" "light slate blue"
374 "medium slate blue" "slate blue" "dark slate blue" "midnight blue" "navy"
375 "dark blue" "light steel blue" "cornflower blue" "dodger blue" "royal blue"
376 "light slate gray" "slate gray" "dark slate gray" "steel blue" "cadet blue"
377 "light sky blue" "sky blue" "light blue" "powder blue" "pale turquoise" "turquoise"
378 "medium turquoise" "dark cyan" "aquamarine" "medium aquamarine" "light sea green"
379 "medium sea green" "sea green" "dark sea green" "pale green" "lime green"
380 "forest green" "light green" "green yellow" "yellow green" "olive drab"
381 "dark olive green" "lemon chiffon" "khaki" "dark khaki" "cornsilk"
382 "pale goldenrod" "light goldenrod" "goldenrod" "dark goldenrod" "wheat"
383 "navajo white" "tan" "burlywood" "sandy brown" "peru" "chocolate" "saddle brown"
384 "sienna" "rosy brown" "dark salmon" "coral" "tomato" "light salmon" "salmon"
385 "light coral" "indian red" "firebrick" "brown" "dark red" "magenta"
386 "dark magenta" "dark violet" "medium blue" "blue" "deep sky blue"
387 "cyan" "medium spring green" "spring green" "green" "lawn green" "chartreuse"
388 "yellow" "gold" "orange" "dark orange" "orange red" "red" "white" "white smoke"
389 "gainsboro" "light grey" "gray" "dark grey" "dim gray" "black" )
390 "The list of X colors from the `rgb.txt' file.
391 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
393 (defun xw-defined-colors (&optional frame)
394 "Internal function called by `defined-colors', which see."
395 (or frame (setq frame (selected-frame)))
396 (let ((all-colors x-colors)
397 (this-color nil)
398 (defined-colors nil))
399 (while all-colors
400 (setq this-color (car all-colors)
401 all-colors (cdr all-colors))
402 (and (color-supported-p this-color frame t)
403 (setq defined-colors (cons this-color defined-colors))))
404 defined-colors))
406 ;;;; Function keys
408 (defun x-setup-function-keys (frame)
409 "Setup Function Keys for mac."
410 ;; Don't do this twice on the same display, or it would break
411 ;; normal-erase-is-backspace-mode.
412 (unless (terminal-parameter frame 'x-setup-function-keys)
413 (with-selected-frame frame
414 ;; Map certain keypad keys into ASCII characters
415 ;; that people usually expect.
416 (define-key local-function-key-map [backspace] [?\d])
417 (define-key local-function-key-map [delete] [?\d])
418 (define-key local-function-key-map [tab] [?\t])
419 (define-key local-function-key-map [linefeed] [?\n])
420 (define-key local-function-key-map [clear] [?\C-l])
421 (define-key local-function-key-map [return] [?\C-m])
422 (define-key local-function-key-map [escape] [?\e])
423 (define-key local-function-key-map [M-backspace] [?\M-\d])
424 (define-key local-function-key-map [M-delete] [?\M-\d])
425 (define-key local-function-key-map [M-tab] [?\M-\t])
426 (define-key local-function-key-map [M-linefeed] [?\M-\n])
427 (define-key local-function-key-map [M-clear] [?\M-\C-l])
428 (define-key local-function-key-map [M-return] [?\M-\C-m])
429 (define-key local-function-key-map [M-escape] [?\M-\e])
430 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
431 local-function-key-map global-map))
432 (set-terminal-parameter frame 'x-setup-function-keys t)))
434 ;; These tell read-char how to convert
435 ;; these special chars to ASCII.
436 (put 'backspace 'ascii-character ?\d)
437 (put 'delete 'ascii-character ?\d)
438 (put 'tab 'ascii-character ?\t)
439 (put 'linefeed 'ascii-character ?\n)
440 (put 'clear 'ascii-character ?\C-l)
441 (put 'return 'ascii-character ?\C-m)
442 (put 'escape 'ascii-character ?\e)
444 ;; Modifier name `ctrl' is an alias of `control'.
445 (put 'ctrl 'modifier-value (get 'control 'modifier-value))
448 ;;;; Script codes and coding systems
449 (defconst mac-script-code-coding-systems
450 '((0 . mac-roman) ; smRoman
451 (1 . japanese-shift-jis) ; smJapanese
452 (2 . chinese-big5) ; smTradChinese
453 (3 . korean-iso-8bit) ; smKorean
454 (7 . mac-cyrillic) ; smCyrillic
455 (25 . chinese-iso-8bit) ; smSimpChinese
456 (29 . mac-centraleurroman) ; smCentralEuroRoman
458 "Alist of Mac script codes vs Emacs coding systems.")
460 (defun mac-add-charset-info (xlfd-charset mac-text-encoding)
461 "Add a character set to display with Mac fonts.
462 Create an entry in `mac-charset-info-alist'.
463 XLFD-CHARSET is a string which will appear in the XLFD font name
464 to identify the character set. MAC-TEXT-ENCODING is the
465 correspoinding TextEncodingBase value."
466 (add-to-list 'mac-charset-info-alist
467 (list xlfd-charset mac-text-encoding
468 (cdr (assq mac-text-encoding
469 mac-script-code-coding-systems)))))
471 (setq mac-charset-info-alist nil)
472 (mac-add-charset-info "mac-roman" 0)
473 (mac-add-charset-info "jisx0208.1983-sjis" 1)
474 (mac-add-charset-info "jisx0201.1976-0" 1)
475 (mac-add-charset-info "big5-0" 2)
476 (mac-add-charset-info "ksc5601.1989-0" 3)
477 (mac-add-charset-info "mac-cyrillic" 7)
478 (mac-add-charset-info "gb2312.1980-0" 25)
479 (mac-add-charset-info "mac-centraleurroman" 29)
480 (mac-add-charset-info "mac-symbol" 33)
481 (mac-add-charset-info "adobe-fontspecific" 33) ; for X-Symbol
482 (mac-add-charset-info "mac-dingbats" 34)
483 (mac-add-charset-info "iso10646-1" 126) ; for ATSUI
485 (define-charset 'mac-centraleurroman
486 "Mac Central European Roman"
487 :short-name "Mac CE"
488 :ascii-compatible-p t
489 :code-space [0 255]
490 :map
491 (let ((tbl
492 [?\Ä ?\Ā ?\ā ?\É ?\Ą ?\Ö ?\Ü ?\á ?\ą ?\Č ?\ä ?\č ?\Ć ?\ć ?\é ?\Ź
493 ?\ź ?\Ď ?\í ?\ď ?\Ē ?\ē ?\Ė ?\ó ?\ė ?\ô ?\ö ?\õ ?\ú ?\Ě ?\ě ?\ü
494 ?\† ?\° ?\Ę ?\£ ?\§ ?\• ?\¶ ?\ß ?\® ?\© ?\™ ?\ę ?\¨ ?\≠ ?\ģ ?\Į
495 ?\į ?\Ī ?\≤ ?\≥ ?\ī ?\Ķ ?\∂ ?\∑ ?\ł ?\Ļ ?\ļ ?\Ľ ?\ľ ?\Ĺ ?\ĺ ?\Ņ
496 ?\ņ ?\Ń ?\¬ ?\√ ?\ń ?\Ň ?\∆ ?\« ?\» ?\… ?\  ?\ň ?\Ő ?\Õ ?\ő ?\Ō
497 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\◊ ?\ō ?\Ŕ ?\ŕ ?\Ř ?\‹ ?\› ?\ř ?\Ŗ
498 ?\ŗ ?\Š ?\‚ ?\„ ?\š ?\Ś ?\ś ?\Á ?\Ť ?\ť ?\Í ?\Ž ?\ž ?\Ū ?\Ó ?\Ô
499 ?\ū ?\Ů ?\Ú ?\ů ?\Ű ?\ű ?\Ų ?\ų ?\Ý ?\ý ?\ķ ?\Ż ?\Ł ?\ż ?\Ģ ?\ˇ])
500 (map (make-vector 512 nil)))
501 (or (= (length tbl) 128)
502 (error "Invalid vector length: %d" (length tbl)))
503 (dotimes (i 128)
504 (aset map (* i 2) i)
505 (aset map (1+ (* i 2)) i))
506 (dotimes (i 128)
507 (aset map (+ 256 (* i 2)) (+ 128 i))
508 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
509 map))
511 (define-coding-system 'mac-centraleurroman
512 "Mac Central European Roman Encoding (MIME:x-mac-centraleurroman)."
513 :coding-type 'charset
514 :mnemonic ?*
515 :charset-list '(mac-centraleurroman)
516 :mime-charset 'x-mac-centraleurroman)
518 (define-charset 'mac-cyrillic
519 "Mac Cyrillic"
520 :short-name "Mac CYRILLIC"
521 :ascii-compatible-p t
522 :code-space [0 255]
523 :map
524 (let ((tbl
525 [?\А ?\Б ?\В ?\Г ?\Д ?\Е ?\Ж ?\З ?\И ?\Й ?\К ?\Л ?\М ?\Н ?\О ?\П
526 ?\Р ?\С ?\Т ?\У ?\Ф ?\Х ?\Ц ?\Ч ?\Ш ?\Щ ?\Ъ ?\Ы ?\Ь ?\Э ?\Ю ?\Я
527 ?\† ?\° ?\Ґ ?\£ ?\§ ?\• ?\¶ ?\І ?\® ?\© ?\™ ?\Ђ ?\ђ ?\≠ ?\Ѓ ?\ѓ
528 ?\∞ ?\± ?\≤ ?\≥ ?\і ?\µ ?\ґ ?\Ј ?\Є ?\є ?\Ї ?\ї ?\Љ ?\љ ?\Њ ?\њ
529 ?\ј ?\Ѕ ?\¬ ?\√ ?\ƒ ?\≈ ?\∆ ?\« ?\» ?\… ?\  ?\Ћ ?\ћ ?\Ќ ?\ќ ?\ѕ
530 ?\– ?\— ?\“ ?\” ?\‘ ?\’ ?\÷ ?\„ ?\Ў ?\ў ?\Џ ?\џ ?\№ ?\Ё ?\ё ?\я
531 ?\а ?\б ?\в ?\г ?\д ?\е ?\ж ?\з ?\и ?\й ?\к ?\л ?\м ?\н ?\о ?\п
532 ?\р ?\с ?\т ?\у ?\ф ?\х ?\ц ?\ч ?\ш ?\щ ?\ъ ?\ы ?\ь ?\э ?\ю ?\€])
533 (map (make-vector 512 nil)))
534 (or (= (length tbl) 128)
535 (error "Invalid vector length: %d" (length tbl)))
536 (dotimes (i 128)
537 (aset map (* i 2) i)
538 (aset map (1+ (* i 2)) i))
539 (dotimes (i 128)
540 (aset map (+ 256 (* i 2)) (+ 128 i))
541 (aset map (+ 256 (1+ (* i 2))) (aref tbl i)))
542 map))
544 (define-coding-system 'mac-cyrillic
545 "Mac Cyrillic Encoding (MIME:x-mac-cyrillic)."
546 :coding-type 'charset
547 :mnemonic ?*
548 :charset-list '(mac-cyrillic)
549 :mime-charset 'x-mac-cyrillic)
551 (define-charset 'mac-symbol
552 "Mac Symbol"
553 :short-name "Mac SYMBOL"
554 :code-space [32 254]
555 :map
556 (let ((tbl-32-126
557 [?\ ?\! ?\∀ ?\# ?\∃ ?\% ?\& ?\∍ ?\( ?\) ?\∗ ?\+ ?\, ?\− ?\. ?\/
558 ?\0 ?\1 ?\2 ?\3 ?\4 ?\5 ?\6 ?\7 ?\8 ?\9 ?\: ?\; ?\< ?\= ?\> ?\?
559 ?\≅ ?\Α ?\Β ?\Χ ?\Δ ?\Ε ?\Φ ?\Γ ?\Η ?\Ι ?\ϑ ?\Κ ?\Λ ?\Μ ?\Ν ?\Ο
560 ?\Π ?\Θ ?\Ρ ?\Σ ?\Τ ?\Υ ?\ς ?\Ω ?\Ξ ?\Ψ ?\Ζ ?\[ ?\∴ ?\] ?\⊥ ?\_
561 ?\ ?\α ?\β ?\χ ?\δ ?\ε ?\φ ?\γ ?\η ?\ι ?\ϕ ?\κ ?\λ ?\μ ?\ν ?\ο
562 ?\π ?\θ ?\ρ ?\σ ?\τ ?\υ ?\ϖ ?\ω ?\ξ ?\ψ ?\ζ ?\{ ?\| ?\} ?\∼])
563 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
564 (tbl-160-254
565 ;; Mapping of the following characters are changed from the
566 ;; original one:
567 ;; 0xE2 0x00AE+0xF87F->0x00AE # REGISTERED SIGN, alternate: sans serif
568 ;; 0xE3 0x00A9+0xF87F->0x00A9 # COPYRIGHT SIGN, alternate: sans serif
569 ;; 0xE4 0x2122+0xF87F->0x2122 # TRADE MARK SIGN, alternate: sans serif
570 [?\€ ?\ϒ ?\′ ?\≤ ?\⁄ ?\∞ ?\ƒ ?\♣ ?\♦ ?\♥ ?\♠ ?\↔ ?\← ?\↑ ?\→ ?\↓
571 ?\° ?\± ?\″ ?\≥ ?\× ?\∝ ?\∂ ?\• ?\÷ ?\≠ ?\≡ ?\≈ ?\… ?\⏐ ?\⎯ ?\↵
572 ?\ℵ ?\ℑ ?\ℜ ?\℘ ?\⊗ ?\⊕ ?\∅ ?\∩ ?\∪ ?\⊃ ?\⊇ ?\⊄ ?\⊂ ?\⊆ ?\∈ ?\∉
573 ?\∠ ?\∇ ?\® ?\© ?\™ ?\∏ ?\√ ?\⋅ ?\¬ ?\∧ ?\∨ ?\⇔ ?\⇐ ?\⇑ ?\⇒ ?\⇓
574 ?\◊ ?\〈 ?\® ?\© ?\™ ?\∑ ?\⎛ ?\⎜ ?\⎝ ?\⎡ ?\⎢ ?\⎣ ?\⎧ ?\⎨ ?\⎩ ?\⎪
575 ?\ ?\〉 ?\∫ ?\⌠ ?\⎮ ?\⌡ ?\⎞ ?\⎟ ?\⎠ ?\⎤ ?\⎥ ?\⎦ ?\⎫ ?\⎬ ?\⎭])
576 (map-160-254 (make-vector (* (1+ (- 254 160)) 2) nil)))
577 (dotimes (i (1+ (- 126 32)))
578 (aset map-32-126 (* i 2) (+ 32 i))
579 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
580 (dotimes (i (1+ (- 254 160)))
581 (aset map-160-254 (* i 2) (+ 160 i))
582 (aset map-160-254 (1+ (* i 2)) (aref tbl-160-254 i)))
583 (vconcat map-32-126 map-160-254)))
585 (define-charset 'mac-dingbats
586 "Mac Dingbats"
587 :short-name "Mac Dingbats"
588 :code-space [32 254]
589 :map
590 (let ((tbl-32-126
591 [?\ ?\✁ ?\✂ ?\✃ ?\✄ ?\☎ ?\✆ ?\✇ ?\✈ ?\✉ ?\☛ ?\☞ ?\✌ ?\✍ ?\✎ ?\✏
592 ?\✐ ?\✑ ?\✒ ?\✓ ?\✔ ?\✕ ?\✖ ?\✗ ?\✘ ?\✙ ?\✚ ?\✛ ?\✜ ?\✝ ?\✞ ?\✟
593 ?\✠ ?\✡ ?\✢ ?\✣ ?\✤ ?\✥ ?\✦ ?\✧ ?\★ ?\✩ ?\✪ ?\✫ ?\✬ ?\✭ ?\✮ ?\✯
594 ?\✰ ?\✱ ?\✲ ?\✳ ?\✴ ?\✵ ?\✶ ?\✷ ?\✸ ?\✹ ?\✺ ?\✻ ?\✼ ?\✽ ?\✾ ?\✿
595 ?\❀ ?\❁ ?\❂ ?\❃ ?\❄ ?\❅ ?\❆ ?\❇ ?\❈ ?\❉ ?\❊ ?\❋ ?\● ?\❍ ?\■ ?\❏
596 ?\❐ ?\❑ ?\❒ ?\▲ ?\▼ ?\◆ ?\❖ ?\◗ ?\❘ ?\❙ ?\❚ ?\❛ ?\❜ ?\❝ ?\❞])
597 (map-32-126 (make-vector (* (1+ (- 126 32)) 2) nil))
598 (tbl-128-141
599 [?\❨ ?\❩ ?\❪ ?\❫ ?\❬ ?\❭ ?\❮ ?\❯ ?\❰ ?\❱ ?\❲ ?\❳ ?\❴ ?\❵])
600 (map-128-141 (make-vector (* (1+ (- 141 128)) 2) nil))
601 (tbl-161-239
602 [?\❡ ?\❢ ?\❣ ?\❤ ?\❥ ?\❦ ?\❧ ?\♣ ?\♦ ?\♥ ?\♠ ?\① ?\② ?\③ ?\④
603 ?\⑤ ?\⑥ ?\⑦ ?\⑧ ?\⑨ ?\⑩ ?\❶ ?\❷ ?\❸ ?\❹ ?\❺ ?\❻ ?\❼ ?\❽ ?\❾ ?\❿
604 ?\➀ ?\➁ ?\➂ ?\➃ ?\➄ ?\➅ ?\➆ ?\➇ ?\➈ ?\➉ ?\➊ ?\➋ ?\➌ ?\➍ ?\➎ ?\➏
605 ?\➐ ?\➑ ?\➒ ?\➓ ?\➔ ?\→ ?\↔ ?\↕ ?\➘ ?\➙ ?\➚ ?\➛ ?\➜ ?\➝ ?\➞ ?\➟
606 ?\➠ ?\➡ ?\➢ ?\➣ ?\➤ ?\➥ ?\➦ ?\➧ ?\➨ ?\➩ ?\➪ ?\➫ ?\➬ ?\➭ ?\➮ ?\➯])
607 (map-161-239 (make-vector (* (1+ (- 239 161)) 2) nil))
608 (tbl-241-254
609 [?\➱ ?\➲ ?\➳ ?\➴ ?\➵ ?\➶ ?\➷ ?\➸ ?\➹ ?\➺ ?\➻ ?\➼ ?\➽ ?\➾])
610 (map-241-254 (make-vector (* (1+ (- 254 241)) 2) nil)))
611 (dotimes (i (1+ (- 126 32)))
612 (aset map-32-126 (* i 2) (+ 32 i))
613 (aset map-32-126 (1+ (* i 2)) (aref tbl-32-126 i)))
614 (dotimes (i (1+ (- 141 128)))
615 (aset map-128-141 (* i 2) (+ 128 i))
616 (aset map-128-141 (1+ (* i 2)) (aref tbl-128-141 i)))
617 (dotimes (i (1+ (- 239 161)))
618 (aset map-161-239 (* i 2) (+ 161 i))
619 (aset map-161-239 (1+ (* i 2)) (aref tbl-161-239 i)))
620 (dotimes (i (1+ (- 254 241)))
621 (aset map-241-254 (* i 2) (+ 241 i))
622 (aset map-241-254 (1+ (* i 2)) (aref tbl-241-254 i)))
623 (vconcat map-32-126 map-128-141 map-161-239 map-241-254)))
625 (defconst mac-system-coding-system
626 (let ((base (or (cdr (assq mac-system-script-code
627 mac-script-code-coding-systems))
628 'mac-roman)))
629 (if (eq system-type 'darwin)
630 base
631 (coding-system-change-eol-conversion base 'mac)))
632 "Coding system derived from the system script code.")
634 (set-selection-coding-system mac-system-coding-system)
637 ;;;; Keyboard layout/language change events
638 (defun mac-handle-language-change (event)
639 "Set keyboard coding system to what is specified in EVENT."
640 (interactive "e")
641 (let ((coding-system
642 (cdr (assq (car (cadr event)) mac-script-code-coding-systems))))
643 (set-keyboard-coding-system (or coding-system 'mac-roman))
644 ;; MacJapanese maps reverse solidus to ?\x80.
645 (if (eq coding-system 'japanese-shift-jis)
646 (define-key key-translation-map [?\x80] "\\"))))
648 (define-key special-event-map [language-change] 'mac-handle-language-change)
651 ;;;; Conversion between common flavors and Lisp string.
653 (defconst mac-text-encoding-ascii #x600
654 "ASCII text encoding.")
656 (defconst mac-text-encoding-mac-japanese-basic-variant #x20001
657 "MacJapanese text encoding without Apple double-byte extensions.")
659 (defun mac-utxt-to-string (data &optional coding-system)
660 (or coding-system (setq coding-system mac-system-coding-system))
661 (let* ((encoding
662 (and (eq system-type 'darwin)
663 (eq (coding-system-base coding-system) 'japanese-shift-jis)
664 mac-text-encoding-mac-japanese-basic-variant))
665 (str (and (fboundp 'mac-code-convert-string)
666 (mac-code-convert-string data nil
667 (or encoding coding-system)))))
668 (when str
669 (setq str (decode-coding-string str coding-system))
670 (if (eq encoding mac-text-encoding-mac-japanese-basic-variant)
671 ;; Does it contain Apple one-byte extensions other than
672 ;; reverse solidus?
673 (if (string-match "[\xa0\xfd-\xff]" str)
674 (setq str nil)
675 ;; ASCII-only?
676 (unless (mac-code-convert-string data nil mac-text-encoding-ascii)
677 (subst-char-in-string ?\x5c ?\¥ str t)
678 (subst-char-in-string ?\x80 ?\\ str t)))))
679 (or str
680 (decode-coding-string data
681 (if (eq (byteorder) ?B) 'utf-16be 'utf-16le)))))
683 (defun mac-string-to-utxt (string &optional coding-system)
684 (or coding-system (setq coding-system mac-system-coding-system))
685 (let (data encoding)
686 (when (and (fboundp 'mac-code-convert-string)
687 (memq (coding-system-base coding-system)
688 (find-coding-systems-string string)))
689 (setq coding-system
690 (coding-system-change-eol-conversion coding-system 'mac))
691 (let ((str string))
692 (when (and (eq system-type 'darwin)
693 (eq coding-system 'japanese-shift-jis-mac))
694 (setq encoding mac-text-encoding-mac-japanese-basic-variant)
695 (setq str (subst-char-in-string ?\\ ?\x80 str))
696 (subst-char-in-string ?\¥ ?\x5c str t)
697 ;; ASCII-only?
698 (if (string-match "\\`[\x00-\x7f]*\\'" str)
699 (setq str nil)))
700 (and str
701 (setq data (mac-code-convert-string
702 (encode-coding-string str coding-system)
703 (or encoding coding-system) nil)))))
704 (or data (encode-coding-string string (if (eq (byteorder) ?B)
705 'utf-16be-mac
706 'utf-16le-mac)))))
708 (defun mac-TEXT-to-string (data &optional coding-system)
709 (or coding-system (setq coding-system mac-system-coding-system))
710 (prog1 (setq data (decode-coding-string data coding-system))
711 (when (eq (coding-system-base coding-system) 'japanese-shift-jis)
712 ;; (subst-char-in-string ?\x5c ?\¥ data t)
713 (subst-char-in-string ?\x80 ?\\ data t))))
715 (defun mac-string-to-TEXT (string &optional coding-system)
716 (or coding-system (setq coding-system mac-system-coding-system))
717 (let ((encodables (find-coding-systems-string string))
718 (rest mac-script-code-coding-systems))
719 (unless (memq (coding-system-base coding-system) encodables)
720 (while (and rest (not (memq (cdar rest) encodables)))
721 (setq rest (cdr rest)))
722 (if rest
723 (setq coding-system (cdar rest)))))
724 (setq coding-system
725 (coding-system-change-eol-conversion coding-system 'mac))
726 (when (eq coding-system 'japanese-shift-jis-mac)
727 ;; (setq string (subst-char-in-string ?\\ ?\x80 string))
728 (setq string (subst-char-in-string ?\¥ ?\x5c string)))
729 (encode-coding-string string coding-system))
731 (defun mac-furl-to-string (data)
732 ;; Remove a trailing nul character.
733 (let ((len (length data)))
734 (if (and (> len 0) (= (aref data (1- len)) ?\0))
735 (substring data 0 (1- len))
736 data)))
738 (defun mac-TIFF-to-string (data &optional text)
739 (prog1 (or text (setq text (copy-sequence " ")))
740 (put-text-property 0 (length text) 'display (create-image data 'tiff t)
741 text)))
743 ;;;; Selections
745 ;;; We keep track of the last text selected here, so we can check the
746 ;;; current selection against it, and avoid passing back our own text
747 ;;; from x-get-selection-value.
748 (defvar x-last-selected-text-clipboard nil
749 "The value of the CLIPBOARD selection last time we selected or
750 pasted text.")
751 (defvar x-last-selected-text-primary nil
752 "The value of the PRIMARY X selection last time we selected or
753 pasted text.")
755 (defcustom x-select-enable-clipboard t
756 "*Non-nil means cutting and pasting uses the clipboard.
757 This is in addition to the primary selection."
758 :type 'boolean
759 :group 'killing)
761 ;;; Make TEXT, a string, the primary X selection.
762 (defun x-select-text (text &optional push)
763 (x-set-selection 'PRIMARY text)
764 (setq x-last-selected-text-primary text)
765 (if (not x-select-enable-clipboard)
766 (setq x-last-selected-text-clipboard nil)
767 (x-set-selection 'CLIPBOARD text)
768 (setq x-last-selected-text-clipboard text))
771 (defun x-get-selection (&optional type data-type)
772 "Return the value of a selection.
773 The argument TYPE (default `PRIMARY') says which selection,
774 and the argument DATA-TYPE (default `STRING') says
775 how to convert the data.
777 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
778 only a few symbols are commonly used. They conventionally have
779 all upper-case names. The most often used ones, in addition to
780 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
782 DATA-TYPE is usually `STRING', but can also be one of the symbols
783 in `selection-converter-alist', which see."
784 (let ((data (x-get-selection-internal (or type 'PRIMARY)
785 (or data-type 'STRING)))
786 (coding (or next-selection-coding-system
787 selection-coding-system)))
788 (when (and (stringp data)
789 (setq data-type (get-text-property 0 'foreign-selection data)))
790 (cond ((eq data-type 'public.utf16-plain-text)
791 (setq data (mac-utxt-to-string data coding)))
792 ((eq data-type 'com.apple.traditional-mac-plain-text)
793 (setq data (mac-TEXT-to-string data coding)))
794 ((eq data-type 'public.file-url)
795 (setq data (mac-furl-to-string data))))
796 (put-text-property 0 (length data) 'foreign-selection data-type data))
797 data))
799 (defun x-selection-value (type)
800 (let ((data-types '(public.utf16-plain-text
801 com.apple.traditional-mac-plain-text
802 public.file-url))
803 text tiff-image)
804 (while (and (null text) data-types)
805 (setq text (condition-case nil
806 (x-get-selection type (car data-types))
807 (error nil)))
808 (setq data-types (cdr data-types)))
809 (if text
810 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
811 (setq tiff-image (condition-case nil
812 (x-get-selection type 'public.tiff)
813 (error nil)))
814 (when tiff-image
815 (remove-text-properties 0 (length tiff-image)
816 '(foreign-selection nil) tiff-image)
817 (setq text (mac-TIFF-to-string tiff-image text)))
818 text))
820 ;;; Return the value of the current selection.
821 ;;; Treat empty strings as if they were unset.
822 ;;; If this function is called twice and finds the same text,
823 ;;; it returns nil the second time. This is so that a single
824 ;;; selection won't be added to the kill ring over and over.
825 (defun x-get-selection-value ()
826 (let (clip-text primary-text)
827 (if (not x-select-enable-clipboard)
828 (setq x-last-selected-text-clipboard nil)
829 (setq clip-text (x-selection-value 'CLIPBOARD))
830 (if (string= clip-text "") (setq clip-text nil))
832 ;; Check the CLIPBOARD selection for 'newness', is it different
833 ;; from what we remebered them to be last time we did a
834 ;; cut/paste operation.
835 (setq clip-text
836 (cond;; check clipboard
837 ((or (not clip-text) (string= clip-text ""))
838 (setq x-last-selected-text-clipboard nil))
839 ((eq clip-text x-last-selected-text-clipboard) nil)
840 ((string= clip-text x-last-selected-text-clipboard)
841 ;; Record the newer string,
842 ;; so subsequent calls can use the `eq' test.
843 (setq x-last-selected-text-clipboard clip-text)
844 nil)
846 (setq x-last-selected-text-clipboard clip-text))))
849 (setq primary-text (x-selection-value 'PRIMARY))
850 ;; Check the PRIMARY selection for 'newness', is it different
851 ;; from what we remebered them to be last time we did a
852 ;; cut/paste operation.
853 (setq primary-text
854 (cond;; check primary selection
855 ((or (not primary-text) (string= primary-text ""))
856 (setq x-last-selected-text-primary nil))
857 ((eq primary-text x-last-selected-text-primary) nil)
858 ((string= primary-text x-last-selected-text-primary)
859 ;; Record the newer string,
860 ;; so subsequent calls can use the `eq' test.
861 (setq x-last-selected-text-primary primary-text)
862 nil)
864 (setq x-last-selected-text-primary primary-text))))
866 ;; As we have done one selection, clear this now.
867 (setq next-selection-coding-system nil)
869 ;; At this point we have recorded the current values for the
870 ;; selection from clipboard (if we are supposed to) and primary,
871 ;; So return the first one that has changed (which is the first
872 ;; non-null one).
873 (or clip-text primary-text)
876 (put 'CLIPBOARD 'mac-scrap-name "com.apple.scrap.clipboard")
877 (when (eq system-type 'darwin)
878 (put 'FIND 'mac-scrap-name "com.apple.scrap.find")
879 (put 'PRIMARY 'mac-scrap-name
880 (format "org.gnu.Emacs.%d.selection.PRIMARY" (emacs-pid))))
881 (put 'com.apple.traditional-mac-plain-text 'mac-ostype "TEXT")
882 (put 'public.utf16-plain-text 'mac-ostype "utxt")
883 (put 'public.tiff 'mac-ostype "TIFF")
884 (put 'public.file-url 'mac-ostype "furl")
886 (defun mac-select-convert-to-string (selection type value)
887 (let ((str (cdr (xselect-convert-to-string selection nil value)))
888 (coding (or next-selection-coding-system selection-coding-system)))
889 (when str
890 ;; If TYPE is nil, this is a local request, thus return STR as
891 ;; is. Otherwise, encode STR.
892 (if (not type)
894 (let ((inhibit-read-only t))
895 (remove-text-properties 0 (length str) '(composition nil) str)
896 (cond
897 ((eq type 'public.utf16-plain-text)
898 (setq str (mac-string-to-utxt str coding)))
899 ((eq type 'com.apple.traditional-mac-plain-text)
900 (setq str (mac-string-to-TEXT str coding)))
902 (error "Unknown selection type: %S" type))
905 (setq next-selection-coding-system nil)
906 (cons type str))))
908 (defun mac-select-convert-to-file-url (selection type value)
909 (let ((filename (xselect-convert-to-filename selection type value))
910 (coding (or file-name-coding-system default-file-name-coding-system)))
911 (if (and filename coding)
912 (setq filename (encode-coding-string filename coding)))
913 (and filename
914 (concat "file://localhost"
915 (mapconcat 'url-hexify-string
916 (split-string filename "/") "/")))))
918 (setq selection-converter-alist
919 (nconc
920 '((public.utf16-plain-text . mac-select-convert-to-string)
921 (com.apple.traditional-mac-plain-text . mac-select-convert-to-string)
922 ;; This is not enabled by default because the `Import Image'
923 ;; menu makes Emacs crash or hang for unknown reasons.
924 ;; (public.tiff . nil)
925 (public.file-url . mac-select-convert-to-file-url)
927 selection-converter-alist))
929 ;;;; Apple events, HICommand events, and Services menu
931 ;;; Event classes
932 (put 'core-event 'mac-apple-event-class "aevt") ; kCoreEventClass
933 (put 'internet-event 'mac-apple-event-class "GURL") ; kAEInternetEventClass
935 ;;; Event IDs
936 ;; kCoreEventClass
937 (put 'open-application 'mac-apple-event-id "oapp") ; kAEOpenApplication
938 (put 'reopen-application 'mac-apple-event-id "rapp") ; kAEReopenApplication
939 (put 'open-documents 'mac-apple-event-id "odoc") ; kAEOpenDocuments
940 (put 'print-documents 'mac-apple-event-id "pdoc") ; kAEPrintDocuments
941 (put 'open-contents 'mac-apple-event-id "ocon") ; kAEOpenContents
942 (put 'quit-application 'mac-apple-event-id "quit") ; kAEQuitApplication
943 (put 'application-died 'mac-apple-event-id "obit") ; kAEApplicationDied
944 (put 'show-preferences 'mac-apple-event-id "pref") ; kAEShowPreferences
945 (put 'autosave-now 'mac-apple-event-id "asav") ; kAEAutosaveNow
946 ;; kAEInternetEventClass
947 (put 'get-url 'mac-apple-event-id "GURL") ; kAEGetURL
948 ;; Converted HI command events
949 (put 'about 'mac-apple-event-id "abou") ; kHICommandAbout
950 (put 'show-hide-font-panel 'mac-apple-event-id "shfp") ; kHICommandShowHideFontPanel
952 (defmacro mac-event-spec (event)
953 `(nth 1 ,event))
955 (defmacro mac-event-ae (event)
956 `(nth 2 ,event))
958 (defun mac-ae-parameter (ae &optional keyword type)
959 (or keyword (setq keyword "----")) ;; Direct object.
960 (if (not (and (consp ae) (equal (car ae) "aevt")))
961 (error "Not an Apple event: %S" ae)
962 (let ((type-data (cdr (assoc keyword (cdr ae))))
963 data)
964 (when (and type type-data (not (equal type (car type-data))))
965 (setq data (mac-coerce-ae-data (car type-data) (cdr type-data) type))
966 (setq type-data (if data (cons type data) nil)))
967 type-data)))
969 (defun mac-ae-list (ae &optional keyword type)
970 (or keyword (setq keyword "----")) ;; Direct object.
971 (let ((desc (mac-ae-parameter ae keyword "list")))
972 (cond ((null desc)
973 nil)
974 ((not (equal (car desc) "list"))
975 (error "Parameter for \"%s\" is not a list" keyword))
977 (if (null type)
978 (cdr desc)
979 (mapcar
980 (lambda (type-data)
981 (mac-coerce-ae-data (car type-data) (cdr type-data) type))
982 (cdr desc)))))))
984 (defun mac-ae-number (ae keyword)
985 (let ((type-data (mac-ae-parameter ae keyword))
986 str)
987 (if (and type-data
988 (setq str (mac-coerce-ae-data (car type-data)
989 (cdr type-data) "TEXT")))
990 (let ((num (string-to-number str)))
991 ;; Mac OS Classic may return "0e+0" as the coerced value for
992 ;; the type "magn" and the data "\000\000\000\000".
993 (if (= num 0.0) 0 num))
994 nil)))
996 (defun mac-bytes-to-integer (bytes &optional from to)
997 (or from (setq from 0))
998 (or to (setq to (length bytes)))
999 (let* ((len (- to from))
1000 (extended-sign-len (- (1+ (ceiling (log most-positive-fixnum 2)))
1001 (* 8 len)))
1002 (result 0))
1003 (dotimes (i len)
1004 (setq result (logior (lsh result 8)
1005 (aref bytes (+ from (if (eq (byteorder) ?B) i
1006 (- len i 1)))))))
1007 (if (> extended-sign-len 0)
1008 (ash (lsh result extended-sign-len) (- extended-sign-len))
1009 result)))
1011 (defun mac-ae-selection-range (ae)
1012 ;; #pragma options align=mac68k
1013 ;; typedef struct SelectionRange {
1014 ;; short unused1; // 0 (not used)
1015 ;; short lineNum; // line to select (<0 to specify range)
1016 ;; long startRange; // start of selection range (if line < 0)
1017 ;; long endRange; // end of selection range (if line < 0)
1018 ;; long unused2; // 0 (not used)
1019 ;; long theDate; // modification date/time
1020 ;; } SelectionRange;
1021 ;; #pragma options align=reset
1022 (let ((range-bytes (cdr (mac-ae-parameter ae "kpos" "TEXT"))))
1023 (and range-bytes
1024 (list (mac-bytes-to-integer range-bytes 2 4)
1025 (mac-bytes-to-integer range-bytes 4 8)
1026 (mac-bytes-to-integer range-bytes 8 12)
1027 (mac-bytes-to-integer range-bytes 16 20)))))
1029 ;; On Mac OS X 10.4 and later, the `open-document' event contains an
1030 ;; optional parameter keyAESearchText from the Spotlight search.
1031 (defun mac-ae-text-for-search (ae)
1032 (let ((utf8-text (cdr (mac-ae-parameter ae "stxt" "utf8"))))
1033 (and utf8-text
1034 (decode-coding-string utf8-text 'utf-8))))
1036 (defun mac-ae-text (ae)
1037 (or (cdr (mac-ae-parameter ae nil "TEXT"))
1038 (error "No text in Apple event.")))
1040 (defun mac-ae-frame (ae &optional keyword type)
1041 (let ((bytes (cdr (mac-ae-parameter ae keyword type))))
1042 (if (or (null bytes) (/= (length bytes) 4))
1043 (error "No window reference in Apple event.")
1044 (let ((window-id (mac-coerce-ae-data "long" bytes "TEXT"))
1045 (rest (frame-list))
1046 frame)
1047 (while (and (null frame) rest)
1048 (if (string= (frame-parameter (car rest) 'window-id) window-id)
1049 (setq frame (car rest)))
1050 (setq rest (cdr rest)))
1051 frame))))
1053 (defun mac-ae-script-language (ae keyword)
1054 ;; struct WritingCode {
1055 ;; ScriptCode theScriptCode;
1056 ;; LangCode theLangCode;
1057 ;; };
1058 (let ((bytes (cdr (mac-ae-parameter ae keyword "intl"))))
1059 (and bytes
1060 (cons (mac-bytes-to-integer bytes 0 2)
1061 (mac-bytes-to-integer bytes 2 4)))))
1063 (defun mac-bytes-to-text-range (bytes &optional from to)
1064 ;; struct TextRange {
1065 ;; long fStart;
1066 ;; long fEnd;
1067 ;; short fHiliteStyle;
1068 ;; };
1069 (or from (setq from 0))
1070 (or to (setq to (length bytes)))
1071 (and (= (- to from) (+ 4 4 2))
1072 (list (mac-bytes-to-integer bytes from (+ from 4))
1073 (mac-bytes-to-integer bytes (+ from 4) (+ from 8))
1074 (mac-bytes-to-integer bytes (+ from 8) to))))
1076 (defun mac-ae-text-range-array (ae keyword)
1077 ;; struct TextRangeArray {
1078 ;; short fNumOfRanges;
1079 ;; TextRange fRange[1];
1080 ;; };
1081 (let* ((bytes (cdr (mac-ae-parameter ae keyword "tray")))
1082 (len (length bytes))
1083 nranges result)
1084 (when (and bytes (>= len 2)
1085 (progn
1086 (setq nranges (mac-bytes-to-integer bytes 0 2))
1087 (= len (+ 2 (* nranges 10)))))
1088 (setq result (make-vector nranges nil))
1089 (dotimes (i nranges)
1090 (aset result i
1091 (mac-bytes-to-text-range bytes (+ (* i 10) 2)
1092 (+ (* i 10) 12)))))
1093 result))
1095 (defconst mac-keyboard-modifier-mask-alist
1096 (mapcar
1097 (lambda (modifier-bit)
1098 (cons (car modifier-bit) (lsh 1 (cdr modifier-bit))))
1099 '((command . 8) ; cmdKeyBit
1100 (shift . 9) ; shiftKeyBit
1101 (option . 11) ; optionKeyBit
1102 (control . 12) ; controlKeyBit
1103 (function . 17))) ; kEventKeyModifierFnBit
1104 "Alist of Mac keyboard modifier symbols vs masks.")
1106 (defun mac-ae-keyboard-modifiers (ae)
1107 (let ((modifiers-value (mac-ae-number ae "kmod"))
1108 modifiers)
1109 (if modifiers-value
1110 (dolist (modifier-mask mac-keyboard-modifier-mask-alist)
1111 (if (/= (logand modifiers-value (cdr modifier-mask)) 0)
1112 (setq modifiers (cons (car modifier-mask) modifiers)))))
1113 modifiers))
1115 (defun mac-ae-reopen-application (event)
1116 "Show some frame in response to the Apple event EVENT.
1117 The frame to be shown is chosen from visible or iconified frames
1118 if possible. If there's no such frame, a new frame is created."
1119 (interactive "e")
1120 (unless (frame-visible-p (selected-frame))
1121 (let ((frame (or (car (visible-frame-list))
1122 (car (filtered-frame-list 'frame-visible-p)))))
1123 (if frame
1124 (select-frame frame)
1125 (switch-to-buffer-other-frame "*scratch*"))))
1126 (select-frame-set-input-focus (selected-frame)))
1128 (defun mac-ae-open-documents (event)
1129 "Open the documents specified by the Apple event EVENT."
1130 (interactive "e")
1131 (let ((ae (mac-event-ae event)))
1132 (dolist (file-name (mac-ae-list ae nil 'undecoded-file-name))
1133 (if file-name
1134 (dnd-open-local-file
1135 (concat "file://"
1136 (mapconcat 'url-hexify-string
1137 (split-string file-name "/") "/")) nil)))
1138 (let ((selection-range (mac-ae-selection-range ae))
1139 (search-text (mac-ae-text-for-search ae)))
1140 (cond (selection-range
1141 (let ((line (car selection-range))
1142 (start (cadr selection-range))
1143 (end (nth 2 selection-range)))
1144 (if (>= line 0)
1145 (goto-line (1+ line))
1146 (if (and (>= start 0) (>= end 0))
1147 (progn (set-mark (1+ start))
1148 (goto-char (1+ end)))))))
1149 ((stringp search-text)
1150 (re-search-forward
1151 (mapconcat 'regexp-quote (split-string search-text) "\\|")
1152 nil t)))))
1153 (select-frame-set-input-focus (selected-frame)))
1155 (defun mac-ae-quit-application (event)
1156 "Quit the application Emacs with the Apple event EVENT."
1157 (interactive "e")
1158 (let ((ae (mac-event-ae event)))
1159 (unwind-protect
1160 (save-buffers-kill-emacs)
1161 ;; Reaches here if the user has canceled the quit.
1162 (mac-resume-apple-event ae -128)))) ; userCanceledErr
1164 ;; url-generic-parse-url is autoloaded from url-parse.
1165 (declare-function url-type "url-parse" t t) ; defstruct
1167 (defun mac-ae-get-url (event)
1168 "Open the URL specified by the Apple event EVENT.
1169 Currently the `mailto' scheme is supported."
1170 (interactive "e")
1171 (let* ((ae (mac-event-ae event))
1172 (parsed-url (url-generic-parse-url (mac-ae-text ae))))
1173 (if (string= (url-type parsed-url) "mailto")
1174 (progn
1175 (url-mailto parsed-url)
1176 (select-frame-set-input-focus (selected-frame)))
1177 (mac-resume-apple-event ae t))))
1179 (setq mac-apple-event-map (make-sparse-keymap))
1181 ;; Received when Emacs is launched without associated documents.
1182 ;; Accept it as an Apple event, but no Emacs event is generated so as
1183 ;; not to erase the splash screen.
1184 (define-key mac-apple-event-map [core-event open-application] 0)
1186 ;; Received when a dock or application icon is clicked and Emacs is
1187 ;; already running.
1188 (define-key mac-apple-event-map [core-event reopen-application]
1189 'mac-ae-reopen-application)
1191 (define-key mac-apple-event-map [core-event open-documents]
1192 'mac-ae-open-documents)
1193 (define-key mac-apple-event-map [core-event show-preferences] 'customize)
1194 (define-key mac-apple-event-map [core-event quit-application]
1195 'mac-ae-quit-application)
1197 (define-key mac-apple-event-map [internet-event get-url] 'mac-ae-get-url)
1199 (define-key mac-apple-event-map [hi-command about] 'about-emacs)
1201 ;;; Converted Carbon Events
1202 (defun mac-handle-toolbar-switch-mode (event)
1203 "Toggle visibility of tool-bars in response to EVENT.
1204 With no keyboard modifiers, it toggles the visibility of the
1205 frame where the tool-bar toggle button was pressed. With some
1206 modifiers, it changes the global tool-bar visibility setting."
1207 (interactive "e")
1208 (let ((ae (mac-event-ae event)))
1209 (if (mac-ae-keyboard-modifiers ae)
1210 ;; Globally toggle tool-bar-mode if some modifier key is pressed.
1211 (tool-bar-mode 'toggle)
1212 (let ((frame (mac-ae-frame ae)))
1213 (set-frame-parameter frame 'tool-bar-lines
1214 (if (= (frame-parameter frame 'tool-bar-lines) 0)
1215 1 0))))))
1217 ;; kEventClassWindow/kEventWindowToolbarSwitchMode
1218 (define-key mac-apple-event-map [window toolbar-switch-mode]
1219 'mac-handle-toolbar-switch-mode)
1221 ;;; Font panel
1222 (when (fboundp 'mac-set-font-panel-visible-p)
1224 (define-minor-mode mac-font-panel-mode
1225 "Toggle use of the font panel.
1226 With numeric ARG, display the font panel if and only if ARG is positive."
1227 :init-value nil
1228 :global t
1229 :group 'mac
1230 (mac-set-font-panel-visible-p mac-font-panel-mode))
1232 (defun mac-handle-font-panel-closed (event)
1233 "Update internal status in response to font panel closed EVENT."
1234 (interactive "e")
1235 ;; Synchronize with the minor mode variable.
1236 (mac-font-panel-mode 0))
1238 (defun mac-handle-font-selection (event)
1239 "Change default face attributes according to font selection EVENT."
1240 (interactive "e")
1241 (let* ((ae (mac-event-ae event))
1242 (fm-font-size (mac-ae-number ae "fmsz"))
1243 (atsu-font-id (mac-ae-number ae "auid"))
1244 (attribute-values (and atsu-font-id
1245 (mac-atsu-font-face-attributes atsu-font-id))))
1246 (if fm-font-size
1247 (setq attribute-values
1248 `(:height ,(* 10 fm-font-size) ,@attribute-values)))
1249 (apply 'set-face-attribute 'default (selected-frame) attribute-values)))
1251 ;; kEventClassFont/kEventFontPanelClosed
1252 (define-key mac-apple-event-map [font panel-closed]
1253 'mac-handle-font-panel-closed)
1254 ;; kEventClassFont/kEventFontSelection
1255 (define-key mac-apple-event-map [font selection] 'mac-handle-font-selection)
1256 (define-key mac-apple-event-map [hi-command show-hide-font-panel]
1257 'mac-font-panel-mode)
1259 (define-key-after menu-bar-showhide-menu [mac-font-panel-mode]
1260 (menu-bar-make-mm-toggle mac-font-panel-mode
1261 "Font Panel"
1262 "Show the font panel as a floating dialog")
1263 'showhide-speedbar)
1265 ) ;; (fboundp 'mac-set-font-panel-visible-p)
1267 ;;; Text Services
1268 (defvar mac-ts-update-active-input-area-seqno 0
1269 "Number of processed update-active-input-area events.")
1270 (setq mac-ts-active-input-overlay (make-overlay 0 0))
1272 (defface mac-ts-caret-position
1273 '((t :inverse-video t))
1274 "Face for caret position in Mac TSM active input area.
1275 This is used when the active input area is displayed either in
1276 the echo area or in a buffer where the cursor is not displayed."
1277 :group 'mac)
1279 (defface mac-ts-raw-text
1280 '((t :underline t))
1281 "Face for raw text in Mac TSM active input area."
1282 :group 'mac)
1284 (defface mac-ts-selected-raw-text
1285 '((t :underline t))
1286 "Face for selected raw text in Mac TSM active input area."
1287 :group 'mac)
1289 (defface mac-ts-converted-text
1290 '((((background dark)) :underline "gray20")
1291 (t :underline "gray80"))
1292 "Face for converted text in Mac TSM active input area."
1293 :group 'mac)
1295 (defface mac-ts-selected-converted-text
1296 '((t :underline t))
1297 "Face for selected converted text in Mac TSM active input area."
1298 :group 'mac)
1300 (defface mac-ts-block-fill-text
1301 '((t :underline t))
1302 "Face for block fill text in Mac TSM active input area."
1303 :group 'mac)
1305 (defface mac-ts-outline-text
1306 '((t :underline t))
1307 "Face for outline text in Mac TSM active input area."
1308 :group 'mac)
1310 (defface mac-ts-selected-text
1311 '((t :underline t))
1312 "Face for selected text in Mac TSM active input area."
1313 :group 'mac)
1315 (defface mac-ts-no-hilite
1316 '((t :inherit default))
1317 "Face for no hilite in Mac TSM active input area."
1318 :group 'mac)
1320 (defconst mac-ts-hilite-style-faces
1321 '((2 . mac-ts-raw-text) ; kTSMHiliteRawText
1322 (3 . mac-ts-selected-raw-text) ; kTSMHiliteSelectedRawText
1323 (4 . mac-ts-converted-text) ; kTSMHiliteConvertedText
1324 (5 . mac-ts-selected-converted-text) ; kTSMHiliteSelectedConvertedText
1325 (6 . mac-ts-block-fill-text) ; kTSMHiliteBlockFillText
1326 (7 . mac-ts-outline-text) ; kTSMHiliteOutlineText
1327 (8 . mac-ts-selected-text) ; kTSMHiliteSelectedText
1328 (9 . mac-ts-no-hilite)) ; kTSMHiliteNoHilite
1329 "Alist of Mac TSM hilite style vs Emacs face.")
1331 (defun mac-ts-update-active-input-buf (text fix-len hilite-rng update-rng)
1332 (let ((buf-len (length mac-ts-active-input-buf))
1333 confirmed)
1334 (if (or (null update-rng)
1335 (/= (% (length update-rng) 2) 0))
1336 ;; The parameter is missing (or in a bad format). The
1337 ;; existing inline input session is completely replaced with
1338 ;; the new text.
1339 (setq mac-ts-active-input-buf text)
1340 ;; Otherwise, the current subtext specified by the (2*j)-th
1341 ;; range is replaced with the new subtext specified by the
1342 ;; (2*j+1)-th range.
1343 (let ((tail buf-len)
1344 (i (length update-rng))
1345 segments rng)
1346 (while (> i 0)
1347 (setq i (- i 2))
1348 (setq rng (aref update-rng i))
1349 (if (and (<= 0 (cadr rng)) (< (cadr rng) tail)
1350 (<= tail buf-len))
1351 (setq segments
1352 (cons (substring mac-ts-active-input-buf (cadr rng) tail)
1353 segments)))
1354 (setq tail (car rng))
1355 (setq rng (aref update-rng (1+ i)))
1356 (if (and (<= 0 (car rng)) (< (car rng) (cadr rng))
1357 (<= (cadr rng) (length text)))
1358 (setq segments
1359 (cons (substring text (car rng) (cadr rng))
1360 segments))))
1361 (if (and (< 0 tail) (<= tail buf-len))
1362 (setq segments
1363 (cons (substring mac-ts-active-input-buf 0 tail)
1364 segments)))
1365 (setq mac-ts-active-input-buf (apply 'concat segments))))
1366 (setq buf-len (length mac-ts-active-input-buf))
1367 ;; Confirm (a part of) inline input session.
1368 (cond ((< fix-len 0)
1369 ;; Entire inline session is being confirmed.
1370 (setq confirmed mac-ts-active-input-buf)
1371 (setq mac-ts-active-input-buf ""))
1372 ((= fix-len 0)
1373 ;; None of the text is being confirmed (yet).
1374 (setq confirmed ""))
1376 (if (> fix-len buf-len)
1377 (setq fix-len buf-len))
1378 (setq confirmed (substring mac-ts-active-input-buf 0 fix-len))
1379 (setq mac-ts-active-input-buf
1380 (substring mac-ts-active-input-buf fix-len))))
1381 (setq buf-len (length mac-ts-active-input-buf))
1382 ;; Update highlighting and the caret position in the new inline
1383 ;; input session.
1384 (remove-text-properties 0 buf-len '(cursor nil) mac-ts-active-input-buf)
1385 (mapc (lambda (rng)
1386 (cond ((and (= (nth 2 rng) 1) ; kTSMHiliteCaretPosition
1387 (<= 0 (car rng)) (< (car rng) buf-len))
1388 (put-text-property (car rng) buf-len
1389 'cursor t mac-ts-active-input-buf))
1390 ((and (<= 0 (car rng)) (< (car rng) (cadr rng))
1391 (<= (cadr rng) buf-len))
1392 (put-text-property (car rng) (cadr rng) 'face
1393 (cdr (assq (nth 2 rng)
1394 mac-ts-hilite-style-faces))
1395 mac-ts-active-input-buf))))
1396 hilite-rng)
1397 confirmed))
1399 (defun mac-split-string-by-property-change (string)
1400 (let ((tail (length string))
1401 head result)
1402 (unless (= tail 0)
1403 (while (setq head (previous-property-change tail string)
1404 result (cons (substring string (or head 0) tail) result)
1405 tail head)))
1406 result))
1408 (defun mac-replace-untranslated-utf-8-chars (string &optional to-string)
1409 (or to-string (setq to-string "\e$,3u=\e(B"))
1410 (mapconcat
1411 (lambda (str)
1412 (if (get-text-property 0 'untranslated-utf-8 str) to-string str))
1413 (mac-split-string-by-property-change string)
1414 ""))
1416 (defun mac-keyboard-translate-char (ch)
1417 (if (and (characterp ch)
1418 (or (char-table-p keyboard-translate-table)
1419 (and (or (stringp keyboard-translate-table)
1420 (vectorp keyboard-translate-table))
1421 (> (length keyboard-translate-table) ch))))
1422 (or (aref keyboard-translate-table ch) ch)
1423 ch))
1425 (defun mac-unread-string (string)
1426 ;; Unread characters and insert them in a keyboard macro being
1427 ;; defined.
1428 (apply 'isearch-unread
1429 (mapcar 'mac-keyboard-translate-char
1430 (mac-replace-untranslated-utf-8-chars string))))
1432 (defun mac-ts-update-active-input-area (event)
1433 "Update Mac TSM active input area according to EVENT.
1434 The confirmed text is converted to Emacs input events and pushed
1435 into `unread-command-events'. The unconfirmed text is displayed
1436 either in the current buffer or in the echo area."
1437 (interactive "e")
1438 (let* ((ae (mac-event-ae event))
1439 (type-text (mac-ae-parameter ae "tstx"))
1440 (text (or (cdr type-text) ""))
1441 (decode-fun (if (equal (car type-text) "TEXT")
1442 'mac-TEXT-to-string 'mac-utxt-to-string))
1443 (script-language (mac-ae-script-language ae "tssl"))
1444 (coding (or (cdr (assq (car script-language)
1445 mac-script-code-coding-systems))
1446 'mac-roman))
1447 (fix-len (mac-ae-number ae "tsfx"))
1448 ;; Optional parameters
1449 (hilite-rng (mac-ae-text-range-array ae "tshi"))
1450 (update-rng (mac-ae-text-range-array ae "tsup"))
1451 ;;(pin-rng (mac-bytes-to-text-range (cdr (mac-ae-parameter ae "tspn" "txrn"))))
1452 ;;(clause-offsets (cdr (mac-ae-parameter ae "tscl" "ofay")))
1453 (seqno (mac-ae-number ae "tsSn"))
1454 confirmed)
1455 (unless (= seqno mac-ts-update-active-input-area-seqno)
1456 ;; Reset internal states if sequence number is out of sync.
1457 (setq mac-ts-active-input-buf ""))
1458 (setq confirmed
1459 (mac-ts-update-active-input-buf text fix-len hilite-rng update-rng))
1460 (let ((use-echo-area
1461 (or isearch-mode
1462 (and cursor-in-echo-area (current-message))
1463 ;; Overlay strings are not shown in some cases.
1464 (get-char-property (point) 'invisible)
1465 (and (not (bobp))
1466 (or (and (get-char-property (point) 'display)
1467 (eq (get-char-property (1- (point)) 'display)
1468 (get-char-property (point) 'display)))
1469 (and (get-char-property (point) 'composition)
1470 (eq (get-char-property (1- (point)) 'composition)
1471 (get-char-property (point) 'composition)))))))
1472 active-input-string caret-seen)
1473 ;; Decode the active input area text with inheriting faces and
1474 ;; the caret position.
1475 (setq active-input-string
1476 (mapconcat
1477 (lambda (str)
1478 (let ((decoded (funcall decode-fun str coding)))
1479 (put-text-property 0 (length decoded) 'face
1480 (get-text-property 0 'face str) decoded)
1481 (when (and (not caret-seen)
1482 (get-text-property 0 'cursor str))
1483 (setq caret-seen t)
1484 (if (or use-echo-area (null cursor-type))
1485 (put-text-property 0 1 'face 'mac-ts-caret-position
1486 decoded)
1487 (put-text-property 0 1 'cursor t decoded)))
1488 decoded))
1489 (mac-split-string-by-property-change mac-ts-active-input-buf)
1490 ""))
1491 (put-text-property 0 (length active-input-string)
1492 'mac-ts-active-input-string t active-input-string)
1493 (if use-echo-area
1494 (let ((msg (current-message))
1495 message-log-max)
1496 (if (and msg
1497 ;; Don't get confused by previously displayed
1498 ;; `active-input-string'.
1499 (null (get-text-property 0 'mac-ts-active-input-string
1500 msg)))
1501 (setq msg (propertize msg 'display
1502 (concat msg active-input-string)))
1503 (setq msg active-input-string))
1504 (message "%s" msg)
1505 (overlay-put mac-ts-active-input-overlay 'before-string nil))
1506 (move-overlay mac-ts-active-input-overlay
1507 (point) (point) (current-buffer))
1508 (overlay-put mac-ts-active-input-overlay 'before-string
1509 active-input-string))
1510 (mac-unread-string (funcall decode-fun confirmed coding)))
1511 ;; The event is successfully processed. Sync the sequence number.
1512 (setq mac-ts-update-active-input-area-seqno (1+ seqno))))
1514 (defun mac-ts-unicode-for-key-event (event)
1515 "Convert Unicode key EVENT to Emacs key events and unread them."
1516 (interactive "e")
1517 (let* ((ae (mac-event-ae event))
1518 (text (cdr (mac-ae-parameter ae "tstx" "utxt")))
1519 (script-language (mac-ae-script-language ae "tssl"))
1520 (coding (or (cdr (assq (car script-language)
1521 mac-script-code-coding-systems))
1522 'mac-roman)))
1523 (if text
1524 (mac-unread-string (mac-utxt-to-string text coding)))))
1526 ;; kEventClassTextInput/kEventTextInputUpdateActiveInputArea
1527 (define-key mac-apple-event-map [text-input update-active-input-area]
1528 'mac-ts-update-active-input-area)
1529 ;; kEventClassTextInput/kEventTextInputUnicodeForKeyEvent
1530 (define-key mac-apple-event-map [text-input unicode-for-key-event]
1531 'mac-ts-unicode-for-key-event)
1533 ;;; Services
1534 (defun mac-service-open-file ()
1535 "Open the file specified by the selection value for Services."
1536 (interactive)
1537 ;; The selection seems not to contain the file name as
1538 ;; public.utf16-plain-text data on Mac OS X 10.4.
1539 (dnd-open-file (x-get-selection mac-service-selection 'public.file-url) nil))
1541 (defun mac-service-open-selection ()
1542 "Create a new buffer containing the selection value for Services."
1543 (interactive)
1544 (switch-to-buffer (generate-new-buffer "*untitled*"))
1545 (insert (x-selection-value mac-service-selection))
1546 (sit-for 0)
1547 (save-buffer) ; It pops up the save dialog.
1550 (defun mac-service-mail-selection ()
1551 "Prepare a mail buffer containing the selection value for Services."
1552 (interactive)
1553 (compose-mail)
1554 (rfc822-goto-eoh)
1555 (forward-line 1)
1556 (insert (x-selection-value mac-service-selection) "\n"))
1558 (defun mac-service-mail-to ()
1559 "Prepare a mail buffer to be sent to the selection value for Services."
1560 (interactive)
1561 (compose-mail (x-selection-value mac-service-selection)))
1563 (defun mac-service-insert-text ()
1564 "Insert the selection value for Services."
1565 (interactive)
1566 (let ((text (x-selection-value mac-service-selection)))
1567 (if (not buffer-read-only)
1568 (insert text)
1569 (kill-new text)
1570 (message "%s"
1571 (substitute-command-keys
1572 "The text from the Services menu can be accessed with \\[yank]")))))
1574 ;; kEventClassService/kEventServicePaste
1575 (define-key mac-apple-event-map [service paste] 'mac-service-insert-text)
1576 ;; kEventClassService/kEventServicePerform
1577 (define-key mac-apple-event-map [service perform open-file]
1578 'mac-service-open-file)
1579 (define-key mac-apple-event-map [service perform open-selection]
1580 'mac-service-open-selection)
1581 (define-key mac-apple-event-map [service perform mail-selection]
1582 'mac-service-mail-selection)
1583 (define-key mac-apple-event-map [service perform mail-to]
1584 'mac-service-mail-to)
1586 (defun mac-dispatch-apple-event (event)
1587 "Dispatch EVENT according to the keymap `mac-apple-event-map'."
1588 (interactive "e")
1589 (let* ((binding (lookup-key mac-apple-event-map (mac-event-spec event)))
1590 (ae (mac-event-ae event))
1591 (service-message (and (keymapp binding)
1592 (cdr (mac-ae-parameter ae "svmg")))))
1593 (when service-message
1594 (setq service-message
1595 (intern (decode-coding-string service-message 'utf-8)))
1596 (setq binding (lookup-key binding (vector service-message))))
1597 ;; Replace (cadr event) with a dummy position so that event-start
1598 ;; returns it.
1599 (setcar (cdr event) (list (selected-window) (point) '(0 . 0) 0))
1600 (if (null (mac-ae-parameter ae 'emacs-suspension-id))
1601 (command-execute binding nil (vector event) t)
1602 (condition-case err
1603 (progn
1604 (command-execute binding nil (vector event) t)
1605 (mac-resume-apple-event ae))
1606 (error
1607 (mac-ae-set-reply-parameter ae "errs"
1608 (cons "TEXT" (error-message-string err)))
1609 (mac-resume-apple-event ae -10000)))))) ; errAEEventFailed
1611 (define-key special-event-map [mac-apple-event] 'mac-dispatch-apple-event)
1613 ;; Processing of Apple events are deferred at the startup time. For
1614 ;; example, files dropped onto the Emacs application icon can only be
1615 ;; processed when the initial frame has been created: this is where
1616 ;; the files should be opened.
1617 (add-hook 'after-init-hook 'mac-process-deferred-apple-events)
1619 (run-with-idle-timer 5 t 'mac-cleanup-expired-apple-events)
1622 ;;;; Drag and drop
1624 (defcustom mac-dnd-types-alist
1625 '(("furl" . mac-dnd-handle-furl)
1626 ("hfs " . mac-dnd-handle-hfs)
1627 ("utxt" . mac-dnd-insert-utxt)
1628 ("TEXT" . mac-dnd-insert-TEXT)
1629 ("TIFF" . mac-dnd-insert-TIFF))
1630 "Which function to call to handle a drop of that type.
1631 The function takes three arguments, WINDOW, ACTION and DATA.
1632 WINDOW is where the drop occurred, ACTION is always `private' on
1633 Mac. DATA is the drop data. Unlike the x-dnd counterpart, the
1634 return value of the function is not significant.
1636 See also `mac-dnd-known-types'."
1637 :version "22.1"
1638 :type 'alist
1639 :group 'mac)
1641 (defun mac-dnd-handle-furl (window action data)
1642 (dnd-handle-one-url window action (mac-furl-to-string data)))
1644 (defun mac-dnd-handle-hfs (window action data)
1645 ;; struct HFSFlavor {
1646 ;; OSType fileType;
1647 ;; OSType fileCreator;
1648 ;; UInt16 fdFlags;
1649 ;; FSSpec fileSpec;
1650 ;; };
1651 (let* ((file-name (mac-coerce-ae-data "fss " (substring data 10)
1652 'undecoded-file-name))
1653 (url (concat "file://"
1654 (mapconcat 'url-hexify-string
1655 (split-string file-name "/") "/"))))
1656 (dnd-handle-one-url window action url)))
1658 (defun mac-dnd-insert-utxt (window action data)
1659 (dnd-insert-text window action (mac-utxt-to-string data)))
1661 (defun mac-dnd-insert-TEXT (window action data)
1662 (dnd-insert-text window action (mac-TEXT-to-string data)))
1664 (defun mac-dnd-insert-TIFF (window action data)
1665 (dnd-insert-text window action (mac-TIFF-to-string data)))
1667 (defun mac-dnd-drop-data (event frame window data type &optional action)
1668 (or action (setq action 'private))
1669 (let* ((type-info (assoc type mac-dnd-types-alist))
1670 (handler (cdr type-info))
1671 (w (posn-window (event-start event))))
1672 (when handler
1673 (if (and (window-live-p w)
1674 (not (window-minibuffer-p w))
1675 (not (window-dedicated-p w)))
1676 ;; If dropping in an ordinary window which we could use,
1677 ;; let dnd-open-file-other-window specify what to do.
1678 (progn
1679 (when (not mouse-yank-at-point)
1680 (goto-char (posn-point (event-start event))))
1681 (funcall handler window action data))
1682 ;; If we can't display the file here,
1683 ;; make a new window for it.
1684 (let ((dnd-open-file-other-window t))
1685 (select-frame frame)
1686 (funcall handler window action data))))))
1688 (defun mac-dnd-handle-drag-n-drop-event (event)
1689 "Receive drag and drop events."
1690 (interactive "e")
1691 (let ((window (posn-window (event-start event)))
1692 (ae (mac-event-ae event))
1693 action)
1694 (when (windowp window) (select-window window))
1695 (if (memq 'option (mac-ae-keyboard-modifiers ae))
1696 (setq action 'copy))
1697 (dolist (item (mac-ae-list ae))
1698 (if (not (equal (car item) "null"))
1699 (mac-dnd-drop-data event (selected-frame) window
1700 (cdr item) (car item) action)))))
1702 (setq font-encoding-alist
1703 (append
1704 '(("mac-roman" . mac-roman)
1705 ("mac-centraleurroman" . mac-centraleurroman)
1706 ("mac-cyrillic" . mac-cyrillic)
1707 ("mac-symbol" . mac-symbol)
1708 ("mac-dingbats" . mac-dingbats))
1709 font-encoding-alist))
1711 (defun fontset-add-mac-fonts (fontset &optional base-family)
1712 (dolist (elt `((latin . (,(or base-family "Monaco") . "mac-roman"))
1713 (mac-roman . (,base-family . "mac-roman"))
1714 (mac-centraleurroman . (,base-family . "mac-centraleurroman"))
1715 (mac-cyrillic . (,base-family . "mac-cyrillic"))
1716 (mac-symbol . (,base-family . "mac-symbol"))
1717 (mac-dingbats . (,base-family . "mac-dingbats"))))
1718 (set-fontset-font fontset (car elt) (cdr elt))))
1720 (defun create-fontset-from-mac-roman-font (font &optional resolved-font
1721 fontset-name)
1722 "Create a fontset from a Mac roman font FONT.
1724 Optional 1st arg RESOLVED-FONT is a resolved name of FONT. If
1725 omitted, `x-resolve-font-name' is called to get the resolved name. At
1726 this time, if FONT is not available, error is signaled.
1728 Optional 2nd arg FONTSET-NAME is a string to be used in
1729 `<CHARSET_ENCODING>' fields of a new fontset name. If it is omitted,
1730 an appropriate name is generated automatically.
1732 It returns a name of the created fontset."
1733 (or resolved-font
1734 (setq resolved-font (x-resolve-font-name font)))
1735 (let ((base-family (aref (x-decompose-font-name resolved-font)
1736 xlfd-regexp-family-subnum)))
1737 (if (string= base-family "*")
1738 (setq base-family nil))
1739 (new-fontset fontset-name (list (cons 'ascii resolved-font)))
1740 (fontset-add-mac-fonts fontset-name base-family)))
1742 (defun x-win-suspend-error ()
1743 (error "Suspending an Emacs running under Mac makes no sense"))
1745 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
1747 (defvar mac-initialized nil
1748 "Non-nil if the w32 window system has been initialized.")
1750 (defun mac-initialize-window-system ()
1751 "Initialize Emacs for Mac GUI frames."
1753 ;;; Do the actual Windows setup here; the above code just defines
1754 ;;; functions and variables that we use now.
1756 (setq command-line-args (x-handle-args command-line-args))
1758 ;;; Make sure we have a valid resource name.
1759 (or (stringp x-resource-name)
1760 (let (i)
1761 (setq x-resource-name (invocation-name))
1763 ;; Change any . or * characters in x-resource-name to hyphens,
1764 ;; so as not to choke when we use it in X resource queries.
1765 (while (setq i (string-match "[.*]" x-resource-name))
1766 (aset x-resource-name i ?-))))
1768 (if (x-display-list)
1769 ;; On Mac OS 8/9, Most coding systems used in code conversion for
1770 ;; font names are not ready at the time when the terminal frame is
1771 ;; created. So we reconstruct font name table for the initial
1772 ;; frame.
1773 (mac-clear-font-name-table)
1774 (x-open-connection "Mac"
1775 x-command-line-resources
1776 ;; Exit Emacs with fatal error if this fails.
1779 (add-hook 'suspend-hook 'x-win-suspend-error)
1781 ;;; Arrange for the kill and yank functions to set and check the clipboard.
1782 (setq interprogram-cut-function 'x-select-text)
1783 (setq interprogram-paste-function 'x-get-selection-value)
1788 ;;; Turn off window-splitting optimization; Mac is usually fast enough
1789 ;;; that this is only annoying.
1790 (setq split-window-keep-point t)
1792 ;; Don't show the frame name; that's redundant.
1793 (setq-default mode-line-frame-identification " ")
1795 ;; Turn on support for mouse wheels.
1796 (mouse-wheel-mode 1)
1799 ;; Enable CLIPBOARD copy/paste through menu bar commands.
1800 (menu-bar-enable-clipboard)
1803 ;; Initiate drag and drop
1805 (define-key special-event-map [drag-n-drop] 'mac-dnd-handle-drag-n-drop-event)
1808 ;;;; Non-toolkit Scroll bars
1810 (unless x-toolkit-scroll-bars
1812 ;; for debugging
1813 ;; (defun mac-handle-scroll-bar-event (event) (interactive "e") (princ event))
1815 ;;(global-set-key [vertical-scroll-bar mouse-1] 'mac-handle-scroll-bar-event)
1817 (global-set-key
1818 [vertical-scroll-bar down-mouse-1]
1819 'mac-handle-scroll-bar-event)
1821 (global-unset-key [vertical-scroll-bar drag-mouse-1])
1822 (global-unset-key [vertical-scroll-bar mouse-1])
1824 ;; Adjust Courier font specifications in x-fixed-font-alist.
1825 (let ((courier-fonts (assoc "Courier" x-fixed-font-alist)))
1826 (if courier-fonts
1827 (dolist (label-fonts (cdr courier-fonts))
1828 (setcdr label-fonts
1829 (mapcar
1830 (lambda (font)
1831 (if (string-match "\\`-adobe-courier-\\([^-]*\\)-\\(.\\)-\\(.*\\)-iso8859-1\\'" font)
1832 (replace-match
1833 (if (string= (match-string 2 font) "o")
1834 "-*-courier-\\1-i-\\3-*-*"
1835 "-*-courier-\\1-\\2-\\3-*-*")
1836 t nil font)
1837 font))
1838 (cdr label-fonts))))))
1840 ;; Setup the default fontset.
1841 (setup-default-fontset)
1843 ;; Create a fontset that uses mac-roman font. With this fontset,
1844 ;; characters belonging to mac-roman charset (that contains ASCII and
1845 ;; more Latin characters) are displayed by a mac-roman font.
1846 (create-fontset-from-mac-roman-font
1847 "-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman" nil
1848 "-apple-Monaco-normal-r-*-*-12-*-*-*-*-*-fontset-standard")
1850 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
1851 (create-fontset-from-x-resource)
1853 ;; Apply a geometry resource to the initial frame. Put it at the end
1854 ;; of the alist, so that anything specified on the command line takes
1855 ;; precedence.
1856 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
1857 parsed)
1858 (if res-geometry
1859 (progn
1860 (setq parsed (x-parse-geometry res-geometry))
1861 ;; If the resource specifies a position,
1862 ;; call the position and size "user-specified".
1863 (if (or (assq 'top parsed) (assq 'left parsed))
1864 (setq parsed (cons '(user-position . t)
1865 (cons '(user-size . t) parsed))))
1866 ;; All geometry parms apply to the initial frame.
1867 (setq initial-frame-alist (append initial-frame-alist parsed))
1868 ;; The size parms apply to all frames. Don't set it if there are
1869 ;; sizes there already (from command line).
1870 (if (and (assq 'height parsed)
1871 (not (assq 'height default-frame-alist)))
1872 (setq default-frame-alist
1873 (cons (cons 'height (cdr (assq 'height parsed)))
1874 default-frame-alist)))
1875 (if (and (assq 'width parsed)
1876 (not (assq 'width default-frame-alist)))
1877 (setq default-frame-alist
1878 (cons (cons 'width (cdr (assq 'width parsed)))
1879 default-frame-alist))))))
1881 ;; Check the reverseVideo resource.
1882 (let ((case-fold-search t))
1883 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
1884 (if (and rv
1885 (string-match "^\\(true\\|yes\\|on\\)$" rv))
1886 (setq default-frame-alist
1887 (cons '(reverse . t) default-frame-alist)))))
1889 (setq mac-initialized t)))
1891 (defun mac-handle-scroll-bar-event (event)
1892 "Handle scroll bar EVENT to emulate Mac Toolbox style scrolling."
1893 (interactive "e")
1894 (let* ((position (event-start event))
1895 (window (nth 0 position))
1896 (bar-part (nth 4 position)))
1897 (select-window window)
1898 (cond
1899 ((eq bar-part 'up)
1900 (goto-char (window-start window))
1901 (mac-scroll-down-line))
1902 ((eq bar-part 'above-handle)
1903 (mac-scroll-down))
1904 ((eq bar-part 'handle)
1905 (scroll-bar-drag event))
1906 ((eq bar-part 'below-handle)
1907 (mac-scroll-up))
1908 ((eq bar-part 'down)
1909 (goto-char (window-start window))
1910 (mac-scroll-up-line)))))
1912 (defun mac-scroll-ignore-events ()
1913 ;; Ignore confusing non-mouse events
1914 (while (not (memq (car-safe (read-event))
1915 '(mouse-1 double-mouse-1 triple-mouse-1))) nil))
1917 (defun mac-scroll-down ()
1918 (track-mouse
1919 (mac-scroll-ignore-events)
1920 (scroll-down)))
1922 (defun mac-scroll-down-line ()
1923 (track-mouse
1924 (mac-scroll-ignore-events)
1925 (scroll-down 1)))
1927 (defun mac-scroll-up ()
1928 (track-mouse
1929 (mac-scroll-ignore-events)
1930 (scroll-up)))
1932 (defun mac-scroll-up-line ()
1933 (track-mouse
1934 (mac-scroll-ignore-events)
1935 (scroll-up 1)))
1939 ;;;; Others
1941 (unless (eq system-type 'darwin)
1942 ;; This variable specifies the Unix program to call (as a process) to
1943 ;; determine the amount of free space on a file system (defaults to
1944 ;; df). If it is not set to nil, ls-lisp will not work correctly
1945 ;; unless an external application df is implemented on the Mac.
1946 (setq directory-free-space-program nil)
1948 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
1949 ;; expand filenames Note no subprocess for the shell is actually
1950 ;; started (see run_mac_command in sysdep.c).
1951 (setq shell-file-name "sh")
1953 ;; Some system variables are encoded with the system script code.
1954 (dolist (v '(system-name
1955 emacs-build-system ; Mac OS 9 version cannot dump
1956 user-login-name user-real-login-name user-full-name))
1957 (set v (decode-coding-string (symbol-value v) mac-system-coding-system))))
1959 ;; Now the default directory is changed to the user's home directory
1960 ;; in emacs.c if invoked from the WindowServer (with -psn_* option).
1961 ;; (if (string= default-directory "/")
1962 ;; (cd "~"))
1964 ;; Darwin 6- pty breakage is now controlled from the C code so that
1965 ;; it applies to all builds on darwin. See s/darwin.h PTY_ITERATION.
1966 ;; (setq process-connection-type t)
1968 ;; Assume that fonts are always scalable on the Mac. This sometimes
1969 ;; results in characters with jagged edges. However, without it,
1970 ;; fonts with both truetype and bitmap representations but no italic
1971 ;; or bold bitmap versions will not display these variants correctly.
1972 (setq scalable-fonts-allowed t)
1974 (add-to-list 'handle-args-function-alist '(mac . x-handle-args))
1975 (add-to-list 'frame-creation-function-alist '(mac . x-create-frame-with-faces))
1976 (add-to-list 'window-system-initialization-alist '(mac . mac-initialize-window-system))
1978 (provide 'mac-win)
1980 ;; arch-tag: 71dfcd14-cde8-4d66-b05c-85ec94fb23a6
1981 ;;; mac-win.el ends here