Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / w32-fns.el
blobdd7c8a44fd11d417fbb0c9a6bb35f81e2ed1e1d2
1 ;;; w32-fns.el --- Lisp routines for Windows NT
3 ;; Copyright (C) 1994, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Geoff Voelker <voelker@cs.washington.edu>
7 ;; Keywords: internal
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:
27 ;;; Code:
28 (require 'w32-vars)
30 (defvar explicit-shell-file-name)
32 ;;;; Function keys
34 (defvar x-alternatives-map
35 (let ((map (make-sparse-keymap)))
36 ;; Map certain keypad keys into ASCII characters that people usually expect.
37 (define-key map [backspace] [127])
38 (define-key map [delete] [127])
39 (define-key map [tab] [?\t])
40 (define-key map [linefeed] [?\n])
41 (define-key map [clear] [?\C-l])
42 (define-key map [return] [?\C-m])
43 (define-key map [escape] [?\e])
44 (define-key map [M-backspace] [?\M-\d])
45 (define-key map [M-delete] [?\M-\d])
46 (define-key map [M-tab] [?\M-\t])
47 (define-key map [M-linefeed] [?\M-\n])
48 (define-key map [M-clear] [?\M-\C-l])
49 (define-key map [M-return] [?\M-\C-m])
50 (define-key map [M-escape] [?\M-\e])
51 (define-key map [iso-lefttab] [backtab])
52 (define-key map [S-iso-lefttab] [backtab])
53 (define-key map [S-tab] [backtab])
54 map)
55 "Keymap of possible alternative meanings for some keys.")
57 (defun x-setup-function-keys (frame)
58 "Set up `function-key-map' on FRAME for w32."
59 ;; Don't do this twice on the same display, or it would break
60 ;; normal-erase-is-backspace-mode.
61 (unless (terminal-parameter frame 'x-setup-function-keys)
62 ;; Map certain keypad keys into ASCII characters that people usually expect.
63 (with-selected-frame frame
64 (let ((map (copy-keymap x-alternatives-map)))
65 (set-keymap-parent map (keymap-parent local-function-key-map))
66 (set-keymap-parent local-function-key-map map)))
67 (set-terminal-parameter frame 'x-setup-function-keys t)))
69 (declare-function set-message-beep "w32console.c")
70 (declare-function w32-get-clipboard-data "w32select.c")
71 (declare-function w32-get-locale-info "w32proc.c")
72 (declare-function w32-get-valid-locale-ids "w32proc.c")
73 (declare-function w32-set-clipboard-data "w32select.c")
75 ;; Map all versions of a filename (8.3, longname, mixed case) to the
76 ;; same buffer.
77 (setq find-file-visit-truename t)
79 (defun w32-version ()
80 "Return the MS-Windows version numbers.
81 The value is a list of three integers: the major and minor version
82 numbers, and the build number."
83 (x-server-version))
85 (defun w32-using-nt ()
86 "Return non-nil if running on a Windows NT descendant.
87 That includes all Windows systems except for 9X/Me."
88 (and (eq system-type 'windows-nt) (getenv "SystemRoot")))
90 (defun w32-shell-name ()
91 "Return the name of the shell being used."
92 (or (bound-and-true-p explicit-shell-file-name)
93 (getenv "ESHELL")
94 (getenv "SHELL")
95 (and (w32-using-nt) "cmd.exe")
96 "command.com"))
98 (defun w32-system-shell-p (shell-name)
99 (and shell-name
100 (member (downcase (file-name-nondirectory shell-name))
101 w32-system-shells)))
103 (defun w32-shell-dos-semantics ()
104 "Return non-nil if the interactive shell being used expects MSDOS shell semantics."
105 (or (w32-system-shell-p (w32-shell-name))
106 (and (member (downcase (file-name-nondirectory (w32-shell-name)))
107 '("cmdproxy" "cmdproxy.exe"))
108 (w32-system-shell-p (getenv "COMSPEC")))))
110 (defvar w32-quote-process-args) ;; defined in w32proc.c
112 (defun w32-check-shell-configuration ()
113 "Check the configuration of shell variables on Windows NT/9X.
114 This function is invoked after loading the init files and processing
115 the command line arguments. It issues a warning if the user or site
116 has configured the shell with inappropriate settings."
117 (interactive)
118 (let ((prev-buffer (current-buffer))
119 (buffer (get-buffer-create "*Shell Configuration*"))
120 (system-shell))
121 (set-buffer buffer)
122 (erase-buffer)
123 (if (w32-system-shell-p (getenv "ESHELL"))
124 (insert (format "Warning! The ESHELL environment variable uses %s.
125 You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
126 (getenv "ESHELL"))))
127 (if (w32-system-shell-p (getenv "SHELL"))
128 (insert (format "Warning! The SHELL environment variable uses %s.
129 You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
130 (getenv "SHELL"))))
131 (if (w32-system-shell-p shell-file-name)
132 (insert (format "Warning! shell-file-name uses %s.
133 You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
134 shell-file-name)))
135 (if (and (boundp 'explicit-shell-file-name)
136 (w32-system-shell-p explicit-shell-file-name))
137 (insert (format "Warning! explicit-shell-file-name uses %s.
138 You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
139 explicit-shell-file-name)))
140 (setq system-shell (> (buffer-size) 0))
142 ;; Allow user to specify that they really do want to use one of the
143 ;; "system" shells, despite the drawbacks, but still warn if
144 ;; shell-command-switch doesn't match.
145 (if w32-allow-system-shell
146 (erase-buffer))
148 (cond (system-shell
149 ;; System shells.
150 (if (string-equal "-c" shell-command-switch)
151 (insert "Warning! shell-command-switch is \"-c\".
152 You should set this to \"/c\" when using a system shell.\n\n"))
153 (if w32-quote-process-args
154 (insert "Warning! w32-quote-process-args is t.
155 You should set this to nil when using a system shell.\n\n")))
156 ;; Non-system shells.
158 (if (string-equal "/c" shell-command-switch)
159 (insert "Warning! shell-command-switch is \"/c\".
160 You should set this to \"-c\" when using a non-system shell.\n\n"))
161 (if (not w32-quote-process-args)
162 (insert "Warning! w32-quote-process-args is nil.
163 You should set this to t when using a non-system shell.\n\n"))))
164 (if (> (buffer-size) 0)
165 (display-buffer buffer)
166 (kill-buffer buffer))
167 (set-buffer prev-buffer)))
169 (add-hook 'after-init-hook 'w32-check-shell-configuration)
171 ;;; Override setting chosen at startup.
172 (defun set-default-process-coding-system ()
173 ;; Most programs on Windows will accept Unix line endings on input
174 ;; (and some programs ported from Unix require it) but most will
175 ;; produce DOS line endings on output.
176 (setq default-process-coding-system
177 (if default-enable-multibyte-characters
178 '(undecided-dos . undecided-unix)
179 '(raw-text-dos . raw-text-unix)))
180 ;; Make cmdproxy default to using DOS line endings for input,
181 ;; because some Windows programs (including command.com) require it.
182 (add-to-list 'process-coding-system-alist
183 `("[cC][mM][dD][pP][rR][oO][xX][yY]"
184 . ,(if default-enable-multibyte-characters
185 '(undecided-dos . undecided-dos)
186 '(raw-text-dos . raw-text-dos))))
187 ;; plink needs DOS input when entering the password.
188 (add-to-list 'process-coding-system-alist
189 `("[pP][lL][iI][nN][kK]"
190 . ,(if default-enable-multibyte-characters
191 '(undecided-dos . undecided-dos)
192 '(raw-text-dos . raw-text-dos)))))
194 (add-hook 'before-init-hook 'set-default-process-coding-system)
197 ;;; Basic support functions for managing Emacs' locale setting
199 (defvar w32-valid-locales nil
200 "List of locale ids known to be supported.")
202 ;;; This is the brute-force version; an efficient version is now
203 ;;; built-in though.
204 (if (not (fboundp 'w32-get-valid-locale-ids))
205 (defun w32-get-valid-locale-ids ()
206 "Return list of all valid Windows locale ids."
207 (let ((i 65535)
208 locales)
209 (while (> i 0)
210 (if (w32-get-locale-info i)
211 (setq locales (cons i locales)))
212 (setq i (1- i)))
213 locales)))
215 (defun w32-list-locales ()
216 "List the name and id of all locales supported by Windows."
217 (interactive)
218 (if (null w32-valid-locales)
219 (setq w32-valid-locales (w32-get-valid-locale-ids)))
220 (switch-to-buffer-other-window (get-buffer-create "*Supported Locales*"))
221 (erase-buffer)
222 (insert "LCID\tAbbrev\tFull name\n\n")
223 (insert (mapconcat
224 '(lambda (x)
225 (format "%d\t%s\t%s"
227 (w32-get-locale-info x)
228 (w32-get-locale-info x t)))
229 w32-valid-locales "\n"))
230 (insert "\n")
231 (goto-char (point-min)))
234 ;;; Setup Info-default-directory-list to include the info directory
235 ;;; near where Emacs executable was installed. We used to set INFOPATH,
236 ;;; but when this is set Info-default-directory-list is ignored. We
237 ;;; also cannot rely upon what is set in paths.el because they assume
238 ;;; that configuration during build time is correct for runtime.
239 (defun w32-init-info ()
240 (let* ((instdir (file-name-directory invocation-directory))
241 (dir1 (expand-file-name "../info/" instdir))
242 (dir2 (expand-file-name "../../../info/" instdir)))
243 (if (file-exists-p dir1)
244 (setq Info-default-directory-list
245 (append Info-default-directory-list (list dir1)))
246 (if (file-exists-p dir2)
247 (setq Info-default-directory-list
248 (append Info-default-directory-list (list dir2)))))))
250 (add-hook 'before-init-hook 'w32-init-info)
252 ;;; The variable source-directory is used to initialize Info-directory-list.
253 ;;; However, the common case is that Emacs is being used from a binary
254 ;;; distribution, and the value of source-directory is meaningless in that
255 ;;; case. Even worse, source-directory can refer to a directory on a drive
256 ;;; on the build machine that happens to be a removable drive on the user's
257 ;;; machine. When this happens, Emacs tries to access the removable drive
258 ;;; and produces the abort/retry/ignore dialog. Since we do not use
259 ;;; source-directory, set it to something that is a reasonable approximation
260 ;;; on the user's machine.
262 ;(add-hook 'before-init-hook
263 ; '(lambda ()
264 ; (setq source-directory (file-name-as-directory
265 ; (expand-file-name ".." exec-directory)))))
267 (defun convert-standard-filename (filename)
268 "Convert a standard file's name to something suitable for the current OS.
269 This means to guarantee valid names and perhaps to canonicalize
270 certain patterns.
272 On Windows and DOS, replace invalid characters. On DOS, make
273 sure to obey the 8.3 limitations. On Windows, turn Cygwin names
274 into native names, and also turn slashes into backslashes if the
275 shell requires it (see `w32-shell-dos-semantics')."
276 (save-match-data
277 (let ((name
278 (if (string-match "\\`/cygdrive/\\([a-zA-Z]\\)/" filename)
279 (replace-match "\\1:/" t nil filename)
280 (copy-sequence filename)))
281 (start 0))
282 ;; leave ':' if part of drive specifier
283 (if (and (> (length name) 1)
284 (eq (aref name 1) ?:))
285 (setq start 2))
286 ;; destructively replace invalid filename characters with !
287 (while (string-match "[?*:<>|\"\000-\037]" name start)
288 (aset name (match-beginning 0) ?!)
289 (setq start (match-end 0)))
290 ;; convert directory separators to Windows format
291 ;; (but only if the shell in use requires it)
292 (when (w32-shell-dos-semantics)
293 (setq start 0)
294 (while (string-match "/" name start)
295 (aset name (match-beginning 0) ?\\)
296 (setq start (match-end 0))))
297 name)))
299 ;;; Fix interface to (X-specific) mouse.el
300 (defun x-set-selection (type data)
301 (or type (setq type 'PRIMARY))
302 (put 'x-selections type data))
304 (defun x-get-selection (&optional type data-type)
305 (or type (setq type 'PRIMARY))
306 (get 'x-selections type))
308 (defun set-w32-system-coding-system (coding-system)
309 "Set the coding system used by the Windows system to CODING-SYSTEM.
310 This is used for things like passing font names with non-ASCII
311 characters in them to the system. For a list of possible values of
312 CODING-SYSTEM, use \\[list-coding-systems].
314 This function is provided for backward compatibility, since
315 `w32-system-coding-system' is now an alias for `locale-coding-system'."
316 (interactive
317 (list (let ((default locale-coding-system))
318 (read-coding-system
319 (format "Coding system for system calls (default %s): "
320 default)
321 default))))
322 (check-coding-system coding-system)
323 (setq locale-coding-system coding-system))
325 ;; locale-coding-system was introduced to do the same thing as
326 ;; w32-system-coding-system. Use that instead.
327 (defvaralias 'w32-system-coding-system 'locale-coding-system)
329 ;;; Set to a system sound if you want a fancy bell.
330 (set-message-beep nil)
332 ;;; The "Windows" keys on newer keyboards bring up the Start menu
333 ;;; whether you want it or not - make Emacs ignore these keystrokes
334 ;;; rather than beep.
335 (global-set-key [lwindow] 'ignore)
336 (global-set-key [rwindow] 'ignore)
338 ;; These tell read-char how to convert
339 ;; these special chars to ASCII.
340 (put 'tab 'ascii-character ?\t)
341 (put 'linefeed 'ascii-character ?\n)
342 (put 'clear 'ascii-character 12)
343 (put 'return 'ascii-character 13)
344 (put 'escape 'ascii-character ?\e)
345 (put 'backspace 'ascii-character 127)
346 (put 'delete 'ascii-character 127)
348 (defun w32-add-charset-info (xlfd-charset windows-charset codepage)
349 "Function to add character sets to display with Windows fonts.
350 Creates entries in `w32-charset-info-alist'.
351 XLFD-CHARSET is a string which will appear in the XLFD font name to
352 identify the character set. WINDOWS-CHARSET is a symbol identifying
353 the Windows character set this maps to. For the list of possible
354 values, see the documentation for `w32-charset-info-alist'. CODEPAGE
355 can be a numeric codepage that Windows uses to display the character
356 set, t for Unicode output with no codepage translation or nil for 8
357 bit output with no translation."
358 (add-to-list 'w32-charset-info-alist
359 (cons xlfd-charset (cons windows-charset codepage)))
362 ;; The last charset we add becomes the "preferred" charset for the return
363 ;; value from w32-select-font etc, so list the most important charsets last.
364 (w32-add-charset-info "iso8859-14" 'w32-charset-ansi 28604)
365 (w32-add-charset-info "iso8859-15" 'w32-charset-ansi 28605)
366 ;; The following two are included for pattern matching.
367 (w32-add-charset-info "jisx0201" 'w32-charset-shiftjis 932)
368 (w32-add-charset-info "jisx0208" 'w32-charset-shiftjis 932)
369 (w32-add-charset-info "jisx0201-latin" 'w32-charset-shiftjis 932)
370 (w32-add-charset-info "jisx0201-katakana" 'w32-charset-shiftjis 932)
371 (w32-add-charset-info "ksc5601.1989" 'w32-charset-hangeul 949)
372 (w32-add-charset-info "big5" 'w32-charset-chinesebig5 950)
373 (w32-add-charset-info "gb2312.1980" 'w32-charset-gb2312 936)
374 (w32-add-charset-info "ms-symbol" 'w32-charset-symbol nil)
375 (w32-add-charset-info "ms-oem" 'w32-charset-oem 437)
376 (w32-add-charset-info "ms-oemlatin" 'w32-charset-oem 850)
377 (if (boundp 'w32-extra-charsets-defined)
378 (progn
379 (w32-add-charset-info "iso8859-2" 'w32-charset-easteurope 28592)
380 (w32-add-charset-info "iso8859-3" 'w32-charset-turkish 28593)
381 (w32-add-charset-info "iso8859-4" 'w32-charset-baltic 28594)
382 (w32-add-charset-info "iso8859-6" 'w32-charset-arabic 28596)
383 (w32-add-charset-info "iso8859-7" 'w32-charset-greek 28597)
384 (w32-add-charset-info "iso8859-8" 'w32-charset-hebrew 1255)
385 (w32-add-charset-info "iso8859-9" 'w32-charset-turkish 1254)
386 (w32-add-charset-info "iso8859-13" 'w32-charset-baltic 1257)
387 (w32-add-charset-info "koi8-r" 'w32-charset-russian 20866)
388 (w32-add-charset-info "iso8859-5" 'w32-charset-russian 28595)
389 (w32-add-charset-info "tis620" 'w32-charset-thai 874)
390 (w32-add-charset-info "windows-1258" 'w32-charset-vietnamese 1258)
391 (w32-add-charset-info "ksc5601.1992" 'w32-charset-johab 1361)
392 (w32-add-charset-info "mac-roman" 'w32-charset-mac 10000)))
393 (if (boundp 'w32-unicode-charset-defined)
394 (progn
395 (w32-add-charset-info "iso10646-1" 'w32-charset-unicode t))
396 (w32-add-charset-info "iso10646-1" 'w32-charset-default t))
397 ;; ;; If unicode windows charset is not defined, use ansi fonts.
398 ;; (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t))
400 ;; Prefered names
401 (w32-add-charset-info "big5-0" 'w32-charset-chinesebig5 950)
402 (w32-add-charset-info "gb2312.1980-0" 'w32-charset-gb2312 936)
403 (w32-add-charset-info "jisx0208-sjis" 'w32-charset-shiftjis 932)
404 (w32-add-charset-info "ksc5601.1987-0" 'w32-charset-hangeul 949)
405 (w32-add-charset-info "tis620-0" 'w32-charset-thai 874)
406 (w32-add-charset-info "iso8859-1" 'w32-charset-ansi 1252)
408 (make-obsolete-variable 'w32-enable-italics
409 'w32-enable-synthesized-fonts "21.1")
410 (make-obsolete-variable 'w32-charset-to-codepage-alist
411 'w32-charset-info-alist "21.1")
414 ;;;; Selections and cut buffers
416 ;;; We keep track of the last text selected here, so we can check the
417 ;;; current selection against it, and avoid passing back our own text
418 ;;; from x-cut-buffer-or-selection-value.
419 (defvar x-last-selected-text nil)
421 ;;; It is said that overlarge strings are slow to put into the cut buffer.
422 ;;; Note this value is overridden below.
423 (defvar x-cut-buffer-max 20000
424 "Max number of characters to put in the cut buffer.")
426 (defun x-select-text (text &optional push)
427 "Make TEXT the last selected text.
428 If `x-select-enable-clipboard' is non-nil, copy the text to the system
429 clipboard as well. Optional PUSH is ignored on Windows."
430 (if x-select-enable-clipboard
431 (w32-set-clipboard-data text))
432 (setq x-last-selected-text text))
434 (defun x-get-selection-value ()
435 "Return the value of the current selection.
436 Consult the selection, then the cut buffer. Treat empty strings as if
437 they were unset."
438 (if x-select-enable-clipboard
439 (let (text)
440 ;; Don't die if x-get-selection signals an error.
441 (condition-case c
442 (setq text (w32-get-clipboard-data))
443 (error (message "w32-get-clipboard-data:%s" c)))
444 (if (string= text "") (setq text nil))
445 (cond
446 ((not text) nil)
447 ((eq text x-last-selected-text) nil)
448 ((string= text x-last-selected-text)
449 ;; Record the newer string, so subsequent calls can use the 'eq' test.
450 (setq x-last-selected-text text)
451 nil)
453 (setq x-last-selected-text text))))))
455 (defalias 'x-cut-buffer-or-selection-value 'x-get-selection-value)
457 ;;; Arrange for the kill and yank functions to set and check the clipboard.
458 (setq interprogram-cut-function 'x-select-text)
459 (setq interprogram-paste-function 'x-get-selection-value)
462 ;;;; Support for build process
463 (defun w32-batch-update-autoloads ()
464 "Like `batch-update-autoloads', but takes the name of the autoloads file
465 from the command line.
467 This is required because some Windows build environments, such as MSYS,
468 munge command-line arguments that include file names to a horrible mess
469 that Emacs is unable to cope with."
470 (let ((generated-autoload-file
471 (expand-file-name (pop command-line-args-left))))
472 (batch-update-autoloads)))
474 (defun w32-append-code-lines (orig extra)
475 "Append non-empty non-comment lines in the file EXTRA to the file ORIG.
477 This function saves all buffers and kills the Emacs session, without asking
478 for any permissions.
480 This is required because the Windows build environment is not required
481 to include Sed, which is used by leim/Makefile.in to do the job."
482 (find-file orig)
483 (goto-char (point-max))
484 (insert-file-contents extra)
485 (delete-matching-lines "^$\\|^;")
486 (save-buffers-kill-emacs t))
488 ;; arch-tag: c49b48cc-0f4f-454f-a274-c2dc34815e14
489 ;;; w32-fns.el ends here