Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / w32-fns.el
CommitLineData
06b60517 1;;; w32-fns.el --- Lisp routines for 32-bit Windows
b578f267 2
acaf905b 3;; Copyright (C) 1994, 2001-2012 Free Software Foundation, Inc.
95ed0025 4
68429d86 5;; Author: Geoff Voelker <voelker@cs.washington.edu>
284b3043 6;; Keywords: internal
bd78fa1d 7;; Package: emacs
95ed0025
RS
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
95ed0025 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
95ed0025
RS
15
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.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
95ed0025
RS
23
24;;; Commentary:
25
95ed0025
RS
26
27;;; Code:
2f42c75f 28(require 'w32-vars)
95ed0025 29
b5de9ae0
JB
30(defvar explicit-shell-file-name)
31
716eb574
JR
32;;;; Function keys
33
73e6adaa
DN
34(declare-function set-message-beep "w32console.c")
35(declare-function w32-get-clipboard-data "w32select.c")
36(declare-function w32-get-locale-info "w32proc.c")
37(declare-function w32-get-valid-locale-ids "w32proc.c")
38(declare-function w32-set-clipboard-data "w32select.c")
81b38822 39
bcaf1c36 40;; Map all versions of a filename (8.3, longname, mixed case) to the
d234707d
GV
41;; same buffer.
42(setq find-file-visit-truename t)
43
aa360da1
GM
44(declare-function x-server-version "w32fns.c" (&optional display))
45
161ab819
AI
46(defun w32-version ()
47 "Return the MS-Windows version numbers.
48The value is a list of three integers: the major and minor version
49numbers, and the build number."
50 (x-server-version))
51
ee82af56 52(defun w32-using-nt ()
4ff64219 53 "Return non-nil if running on a Windows NT descendant.
49bd2bfe 54That includes all Windows systems except for 9X/Me."
ee82af56
GV
55 (and (eq system-type 'windows-nt) (getenv "SystemRoot")))
56
57(defun w32-shell-name ()
d234707d 58 "Return the name of the shell being used."
d43bb7d3 59 (or (bound-and-true-p shell-file-name)
ee82af56
GV
60 (getenv "ESHELL")
61 (getenv "SHELL")
62 (and (w32-using-nt) "cmd.exe")
63 "command.com"))
64
d234707d
GV
65(defun w32-system-shell-p (shell-name)
66 (and shell-name
bcaf1c36 67 (member (downcase (file-name-nondirectory shell-name))
d234707d 68 w32-system-shells)))
ee82af56 69
f3e62da2 70(defun w32-shell-dos-semantics ()
8fc29035 71 "Return non-nil if the interactive shell being used expects MS-DOS shell semantics."
f3e62da2
GV
72 (or (w32-system-shell-p (w32-shell-name))
73 (and (member (downcase (file-name-nondirectory (w32-shell-name)))
74 '("cmdproxy" "cmdproxy.exe"))
75 (w32-system-shell-p (getenv "COMSPEC")))))
76
200fe89b
DN
77(defvar w32-quote-process-args) ;; defined in w32proc.c
78
d234707d 79(defun w32-check-shell-configuration ()
72ab66eb 80 "Check the configuration of shell variables on Windows.
ee82af56 81This function is invoked after loading the init files and processing
d234707d
GV
82the command line arguments. It issues a warning if the user or site
83has configured the shell with inappropriate settings."
85f568ec 84 (interactive)
d234707d
GV
85 (let ((prev-buffer (current-buffer))
86 (buffer (get-buffer-create "*Shell Configuration*"))
87 (system-shell))
88 (set-buffer buffer)
89 (erase-buffer)
90 (if (w32-system-shell-p (getenv "ESHELL"))
91 (insert (format "Warning! The ESHELL environment variable uses %s.
bcaf1c36 92You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
d234707d
GV
93 (getenv "ESHELL"))))
94 (if (w32-system-shell-p (getenv "SHELL"))
95 (insert (format "Warning! The SHELL environment variable uses %s.
bcaf1c36 96You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
d234707d
GV
97 (getenv "SHELL"))))
98 (if (w32-system-shell-p shell-file-name)
99 (insert (format "Warning! shell-file-name uses %s.
bcaf1c36 100You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
d234707d
GV
101 shell-file-name)))
102 (if (and (boundp 'explicit-shell-file-name)
103 (w32-system-shell-p explicit-shell-file-name))
104 (insert (format "Warning! explicit-shell-file-name uses %s.
105You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
106 explicit-shell-file-name)))
107 (setq system-shell (> (buffer-size) 0))
85f568ec
GV
108
109 ;; Allow user to specify that they really do want to use one of the
110 ;; "system" shells, despite the drawbacks, but still warn if
111 ;; shell-command-switch doesn't match.
112 (if w32-allow-system-shell
113 (erase-buffer))
114
d234707d
GV
115 (cond (system-shell
116 ;; System shells.
117 (if (string-equal "-c" shell-command-switch)
118 (insert "Warning! shell-command-switch is \"-c\".
119You should set this to \"/c\" when using a system shell.\n\n"))
120 (if w32-quote-process-args
121 (insert "Warning! w32-quote-process-args is t.
122You should set this to nil when using a system shell.\n\n")))
123 ;; Non-system shells.
124 (t
125 (if (string-equal "/c" shell-command-switch)
126 (insert "Warning! shell-command-switch is \"/c\".
127You should set this to \"-c\" when using a non-system shell.\n\n"))
128 (if (not w32-quote-process-args)
129 (insert "Warning! w32-quote-process-args is nil.
130You should set this to t when using a non-system shell.\n\n"))))
131 (if (> (buffer-size) 0)
132 (display-buffer buffer)
133 (kill-buffer buffer))
134 (set-buffer prev-buffer)))
135
136(add-hook 'after-init-hook 'w32-check-shell-configuration)
137
f2b256fa 138;; Override setting chosen at startup.
b1ed8648
AI
139(defun set-default-process-coding-system ()
140 ;; Most programs on Windows will accept Unix line endings on input
141 ;; (and some programs ported from Unix require it) but most will
142 ;; produce DOS line endings on output.
143 (setq default-process-coding-system
597e2240 144 (if (default-value 'enable-multibyte-characters)
b1ed8648
AI
145 '(undecided-dos . undecided-unix)
146 '(raw-text-dos . raw-text-unix)))
a272a739
JR
147 ;; Make cmdproxy default to using DOS line endings for input,
148 ;; because some Windows programs (including command.com) require it.
149 (add-to-list 'process-coding-system-alist
150 `("[cC][mM][dD][pP][rR][oO][xX][yY]"
597e2240 151 . ,(if (default-value 'enable-multibyte-characters)
a272a739
JR
152 '(undecided-dos . undecided-dos)
153 '(raw-text-dos . raw-text-dos))))
154 ;; plink needs DOS input when entering the password.
155 (add-to-list 'process-coding-system-alist
156 `("[pP][lL][iI][nN][kK]"
597e2240 157 . ,(if (default-value 'enable-multibyte-characters)
a272a739
JR
158 '(undecided-dos . undecided-dos)
159 '(raw-text-dos . raw-text-dos)))))
b1ed8648
AI
160
161(add-hook 'before-init-hook 'set-default-process-coding-system)
162
85f568ec
GV
163
164;;; Basic support functions for managing Emacs' locale setting
165
166(defvar w32-valid-locales nil
167 "List of locale ids known to be supported.")
168
f2b256fa
SM
169;; This is the brute-force version; an efficient version is now
170;; built-in though.
85f568ec
GV
171(if (not (fboundp 'w32-get-valid-locale-ids))
172 (defun w32-get-valid-locale-ids ()
173 "Return list of all valid Windows locale ids."
174 (let ((i 65535)
175 locales)
176 (while (> i 0)
177 (if (w32-get-locale-info i)
178 (setq locales (cons i locales)))
179 (setq i (1- i)))
180 locales)))
181
182(defun w32-list-locales ()
183 "List the name and id of all locales supported by Windows."
184 (interactive)
ac62ec16
JB
185 (when (null w32-valid-locales)
186 (setq w32-valid-locales (sort (w32-get-valid-locale-ids) #'<)))
555e23cf
JB
187 (with-output-to-temp-buffer "*Supported Locales*"
188 (princ "LCID\tAbbrev\tFull name\n\n")
011a0143
JB
189 (dolist (locale w32-valid-locales)
190 (princ (format "%d\t%s\t%s\n"
191 locale
192 (w32-get-locale-info locale)
193 (w32-get-locale-info locale t))))))
85f568ec 194
f2b256fa
SM
195;; Setup Info-default-directory-list to include the info directory
196;; near where Emacs executable was installed. We used to set INFOPATH,
197;; but when this is set Info-default-directory-list is ignored. We
198;; also cannot rely upon what is set in paths.el because they assume
199;; that configuration during build time is correct for runtime.
d234707d
GV
200(defun w32-init-info ()
201 (let* ((instdir (file-name-directory invocation-directory))
85f568ec 202 (dir1 (expand-file-name "../info/" instdir))
d234707d
GV
203 (dir2 (expand-file-name "../../../info/" instdir)))
204 (if (file-exists-p dir1)
bcaf1c36 205 (setq Info-default-directory-list
d234707d
GV
206 (append Info-default-directory-list (list dir1)))
207 (if (file-exists-p dir2)
208 (setq Info-default-directory-list
209 (append Info-default-directory-list (list dir2)))))))
210
211(add-hook 'before-init-hook 'w32-init-info)
3eab6a03 212
f2b256fa
SM
213;; The variable source-directory is used to initialize Info-directory-list.
214;; However, the common case is that Emacs is being used from a binary
215;; distribution, and the value of source-directory is meaningless in that
216;; case. Even worse, source-directory can refer to a directory on a drive
217;; on the build machine that happens to be a removable drive on the user's
218;; machine. When this happens, Emacs tries to access the removable drive
219;; and produces the abort/retry/ignore dialog. Since we do not use
220;; source-directory, set it to something that is a reasonable approximation
221;; on the user's machine.
222
223;;(add-hook 'before-init-hook
224;; (lambda ()
225;; (setq source-directory (file-name-as-directory
226;; (expand-file-name ".." exec-directory)))))
8929f478 227
98d8b17e 228(defun w32-convert-standard-filename (filename)
b61dfbe2 229 "Convert a standard file's name to something suitable for MS-Windows.
915b0bf0
JB
230This means to guarantee valid names and perhaps to canonicalize
231certain patterns.
232
98d8b17e
EZ
233This function is called by `convert-standard-filename'.
234
235Replace invalid characters and turn Cygwin names into native
236names, and also turn slashes into backslashes if the shell
237requires it (see `w32-shell-dos-semantics')."
45b8a401
EZ
238 (save-match-data
239 (let ((name
240 (if (string-match "\\`/cygdrive/\\([a-zA-Z]\\)/" filename)
bcaf1c36 241 (replace-match "\\1:/" t nil filename)
45b8a401
EZ
242 (copy-sequence filename)))
243 (start 0))
244 ;; leave ':' if part of drive specifier
245 (if (and (> (length name) 1)
246 (eq (aref name 1) ?:))
247 (setq start 2))
248 ;; destructively replace invalid filename characters with !
249 (while (string-match "[?*:<>|\"\000-\037]" name start)
250 (aset name (match-beginning 0) ?!)
251 (setq start (match-end 0)))
252 ;; convert directory separators to Windows format
253 ;; (but only if the shell in use requires it)
254 (when (w32-shell-dos-semantics)
255 (setq start 0)
256 (while (string-match "/" name start)
257 (aset name (match-beginning 0) ?\\)
258 (setq start (match-end 0))))
259 name)))
4e0cd0df 260
95ed0025 261;;; Fix interface to (X-specific) mouse.el
bffcf874 262(defun x-set-selection (type data)
d977a092 263 "Make an X selection of type TYPE and value DATA.
3077d1f6
EZ
264The argument TYPE (nil means `PRIMARY') says which selection, and
265DATA specifies the contents. TYPE must be a symbol. \(It can also
266be a string, which stands for the symbol with that name, but this
267is considered obsolete.) DATA may be a string, a symbol, an
268integer (or a cons of two integers or list of two integers).
269
270The selection may also be a cons of two markers pointing to the same buffer,
271or an overlay. In these cases, the selection is considered to be the text
272between the markers *at whatever time the selection is examined*.
273Thus, editing done in the buffer after you specify the selection
274can alter the effective value of the selection.
275
276The data may also be a vector of valid non-vector selection values.
277
278The return value is DATA.
279
280Interactively, this command sets the primary selection. Without
281prefix argument, it reads the selection in the minibuffer. With
282prefix argument, it uses the text of the region as the selection value.
283
284Note that on MS-Windows, primary and secondary selections set by Emacs
285are not available to other programs."
3f5c9cad 286 (put 'x-selections (or type 'PRIMARY) data))
bffcf874 287
06b60517 288(defun x-get-selection (&optional type _data-type)
3077d1f6
EZ
289 "Return the value of an X Windows selection.
290The argument TYPE (default `PRIMARY') says which selection,
291and the argument DATA-TYPE (default `STRING') says
292how to convert the data.
293
294TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
295only a few symbols are commonly used. They conventionally have
296all upper-case names. The most often used ones, in addition to
297`PRIMARY', are `SECONDARY' and `CLIPBOARD'.
298
299DATA-TYPE is usually `STRING', but can also be one of the symbols
300in `selection-converter-alist', which see."
3f5c9cad
CY
301 (get 'x-selections (or type 'PRIMARY)))
302
303;; x-selection-owner-p is used in simple.el
304(defun x-selection-owner-p (&optional type)
305 (and (memq type '(nil PRIMARY SECONDARY))
306 (get 'x-selections (or type 'PRIMARY))))
bffcf874 307
1b42a753 308(defun set-w32-system-coding-system (coding-system)
49bd2bfe 309 "Set the coding system used by the Windows system to CODING-SYSTEM.
1b42a753 310This is used for things like passing font names with non-ASCII
551ea1bd 311characters in them to the system. For a list of possible values of
086ceb30
JR
312CODING-SYSTEM, use \\[list-coding-systems].
313
314This function is provided for backward compatibility, since
49bd2bfe 315`w32-system-coding-system' is now an alias for `locale-coding-system'."
1b42a753 316 (interactive
086ceb30 317 (list (let ((default locale-coding-system))
1b42a753 318 (read-coding-system
5b76833f 319 (format "Coding system for system calls (default %s): "
1b42a753
GV
320 default)
321 default))))
322 (check-coding-system coding-system)
086ceb30
JR
323 (setq locale-coding-system coding-system))
324
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)
1b42a753 328
f2b256fa 329;; Set to a system sound if you want a fancy bell.
81b38822
KH
330(set-message-beep nil)
331
f2b256fa
SM
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.
d234707d
GV
335(global-set-key [lwindow] 'ignore)
336(global-set-key [rwindow] 'ignore)
337
94b9acce
GM
338(defvar w32-charset-info-alist) ; w32font.c
339
15fa6efb
JR
340(defun w32-add-charset-info (xlfd-charset windows-charset codepage)
341 "Function to add character sets to display with Windows fonts.
342Creates entries in `w32-charset-info-alist'.
343XLFD-CHARSET is a string which will appear in the XLFD font name to
72ab66eb 344identify the character set. WINDOWS-CHARSET is a symbol identifying
551ea1bd
JB
345the Windows character set this maps to. For the list of possible
346values, see the documentation for `w32-charset-info-alist'. CODEPAGE
15fa6efb
JR
347can be a numeric codepage that Windows uses to display the character
348set, t for Unicode output with no codepage translation or nil for 8
349bit output with no translation."
350 (add-to-list 'w32-charset-info-alist
72ab66eb 351 (cons xlfd-charset (cons windows-charset codepage))))
15fa6efb 352
4c7ec703
JR
353;; The last charset we add becomes the "preferred" charset for the return
354;; value from w32-select-font etc, so list the most important charsets last.
15fa6efb
JR
355(w32-add-charset-info "iso8859-14" 'w32-charset-ansi 28604)
356(w32-add-charset-info "iso8859-15" 'w32-charset-ansi 28605)
2005121f
JR
357;; The following two are included for pattern matching.
358(w32-add-charset-info "jisx0201" 'w32-charset-shiftjis 932)
359(w32-add-charset-info "jisx0208" 'w32-charset-shiftjis 932)
15fa6efb
JR
360(w32-add-charset-info "jisx0201-latin" 'w32-charset-shiftjis 932)
361(w32-add-charset-info "jisx0201-katakana" 'w32-charset-shiftjis 932)
751be31e
JR
362(w32-add-charset-info "ksc5601.1989" 'w32-charset-hangeul 949)
363(w32-add-charset-info "big5" 'w32-charset-chinesebig5 950)
364(w32-add-charset-info "gb2312.1980" 'w32-charset-gb2312 936)
15fa6efb
JR
365(w32-add-charset-info "ms-symbol" 'w32-charset-symbol nil)
366(w32-add-charset-info "ms-oem" 'w32-charset-oem 437)
367(w32-add-charset-info "ms-oemlatin" 'w32-charset-oem 850)
57016d37
JR
368(w32-add-charset-info "iso8859-2" 'w32-charset-easteurope 28592)
369(w32-add-charset-info "iso8859-3" 'w32-charset-turkish 28593)
370(w32-add-charset-info "iso8859-4" 'w32-charset-baltic 28594)
371(w32-add-charset-info "iso8859-6" 'w32-charset-arabic 28596)
372(w32-add-charset-info "iso8859-7" 'w32-charset-greek 28597)
373(w32-add-charset-info "iso8859-8" 'w32-charset-hebrew 1255)
374(w32-add-charset-info "iso8859-9" 'w32-charset-turkish 1254)
375(w32-add-charset-info "iso8859-13" 'w32-charset-baltic 1257)
376(w32-add-charset-info "koi8-r" 'w32-charset-russian 20866)
377(w32-add-charset-info "iso8859-5" 'w32-charset-russian 28595)
18885c11 378(w32-add-charset-info "tis620-2533" 'w32-charset-thai 874)
57016d37
JR
379(w32-add-charset-info "windows-1258" 'w32-charset-vietnamese 1258)
380(w32-add-charset-info "ksc5601.1992" 'w32-charset-johab 1361)
7992f52c
JR
381(w32-add-charset-info "mac-roman" 'w32-charset-mac 10000)
382(w32-add-charset-info "iso10646-1" 'w32-charset-default t)
57016d37 383
fe7a3057 384;; ;; If Unicode Windows charset is not defined, use ansi fonts.
2005121f
JR
385;; (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t))
386
e4920bc9 387;; Preferred names
2005121f
JR
388(w32-add-charset-info "big5-0" 'w32-charset-chinesebig5 950)
389(w32-add-charset-info "gb2312.1980-0" 'w32-charset-gb2312 936)
390(w32-add-charset-info "jisx0208-sjis" 'w32-charset-shiftjis 932)
391(w32-add-charset-info "ksc5601.1987-0" 'w32-charset-hangeul 949)
392(w32-add-charset-info "tis620-0" 'w32-charset-thai 874)
4c7ec703 393(w32-add-charset-info "iso8859-1" 'w32-charset-ansi 1252)
52f32671 394
47092217
JR
395(make-obsolete-variable 'w32-enable-italics
396 'w32-enable-synthesized-fonts "21.1")
d4b7d6b4 397(make-obsolete-variable 'w32-charset-to-codepage-alist
47092217 398 'w32-charset-info-alist "21.1")
d4b7d6b4 399
3b4cf5db 400\f
45240125 401;;;; Selections
3b4cf5db 402
f2b256fa
SM
403;; We keep track of the last text selected here, so we can check the
404;; current selection against it, and avoid passing back our own text
6d7cc563 405;; from x-selection-value.
3b4cf5db
AI
406(defvar x-last-selected-text nil)
407
3b4cf5db
AI
408(defun x-get-selection-value ()
409 "Return the value of the current selection.
45240125 410Consult the selection. Treat empty strings as if they were unset."
3b4cf5db
AI
411 (if x-select-enable-clipboard
412 (let (text)
413 ;; Don't die if x-get-selection signals an error.
414 (condition-case c
415 (setq text (w32-get-clipboard-data))
416 (error (message "w32-get-clipboard-data:%s" c)))
417 (if (string= text "") (setq text nil))
418 (cond
419 ((not text) nil)
420 ((eq text x-last-selected-text) nil)
421 ((string= text x-last-selected-text)
422 ;; Record the newer string, so subsequent calls can use the 'eq' test.
423 (setq x-last-selected-text text)
424 nil)
425 (t
426 (setq x-last-selected-text text))))))
427\f
6d7cc563 428(defalias 'x-selection-value 'x-get-selection-value)
3b4cf5db 429
f2b256fa 430;; Arrange for the kill and yank functions to set and check the clipboard.
3b4cf5db
AI
431(setq interprogram-cut-function 'x-select-text)
432(setq interprogram-paste-function 'x-get-selection-value)
433
3712a0b3
EZ
434\f
435;;;; Support for build process
06b60517
JB
436
437;; From autoload.el
438(defvar autoload-make-program)
439(defvar generated-autoload-file)
440
3712a0b3
EZ
441(defun w32-batch-update-autoloads ()
442 "Like `batch-update-autoloads', but takes the name of the autoloads file
443from the command line.
444
445This is required because some Windows build environments, such as MSYS,
446munge command-line arguments that include file names to a horrible mess
447that Emacs is unable to cope with."
448 (let ((generated-autoload-file
af9fb32f
GM
449 (expand-file-name (pop command-line-args-left)))
450 ;; I can only assume the same considerations may apply here...
451 (autoload-make-program (pop command-line-args-left)))
3712a0b3 452 (batch-update-autoloads)))
3b4cf5db 453
d1dcf3e7
EZ
454(defun w32-append-code-lines (orig extra)
455 "Append non-empty non-comment lines in the file EXTRA to the file ORIG.
456
457This function saves all buffers and kills the Emacs session, without asking
458for any permissions.
459
460This is required because the Windows build environment is not required
461to include Sed, which is used by leim/Makefile.in to do the job."
462 (find-file orig)
463 (goto-char (point-max))
464 (insert-file-contents extra)
465 (delete-matching-lines "^$\\|^;")
466 (save-buffers-kill-emacs t))
467
a0d14345 468;;; w32-fns.el ends here