annotate lisp/dos-w32.el @ 24515:ef4a540c34ff

(set-default-process-coding-system): Copied from dos-w32.el.
author Andrew Innes <andrewi@gnu.org>
date Thu, 25 Mar 1999 22:51:54 +0000
parents 3c29f6165eca
children 7de5cc79a8b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16591
afb15f49a0c9 Use new file name dos-w32.el
Geoff Voelker <voelker@cs.washington.edu>
parents: 16234
diff changeset
1 ;;; dos-w32.el --- Functions shared among MS-DOS and W32 (NT/95) platforms
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 ;; Copyright (C) 1996 Free Software Foundation, Inc.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
21059
cbd9e55a6cdc Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 19970
diff changeset
5 ;; Maintainer: Geoff Voelker <voelker@cs.washington.edu>
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Keywords: internal
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; any later version.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 ;; Parts of this code are duplicated functions taken from dos-fns.el
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;; and winnt.el.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;;; Code:
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;; Use ";" instead of ":" as a path separator (from files.el).
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 (setq path-separator ";")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34
22256
9f422336200e (minibuffer-history-case-insensitive-variables):
Richard M. Stallman <rms@gnu.org>
parents: 21567
diff changeset
35 (setq minibuffer-history-case-insensitive-variables
9f422336200e (minibuffer-history-case-insensitive-variables):
Richard M. Stallman <rms@gnu.org>
parents: 21567
diff changeset
36 (cons 'file-name-history minibuffer-history-case-insensitive-variables))
9f422336200e (minibuffer-history-case-insensitive-variables):
Richard M. Stallman <rms@gnu.org>
parents: 21567
diff changeset
37
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ;; Set the null device (for compile.el).
22607
3c91c17a1a0f (null-device): Renamed from grep-null-device.
Andrew Innes <andrewi@gnu.org>
parents: 22256
diff changeset
39 (setq null-device "NUL")
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ;; Set the grep regexp to match entries with drive letters.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 (setq grep-regexp-alist
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 '(("^\\(\\([a-zA-Z]:\\)?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 3)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 ;; For distinguishing file types based upon suffixes.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 (defvar file-name-buffer-file-type-alist
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 '(
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 ("[:/].*config.sys$" . nil) ; config.sys text
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 ("\\.elc$" . t) ; emacs stuff
19970
c4d7c2fd4852 (file-name-buffer-file-type-alist): Remove the files with ".dos" extension
Eli Zaretskii <eliz@gnu.org>
parents: 19690
diff changeset
50 ("\\.\\(obj\\|exe\\|com\\|lib\\|sym\\|sys\\|chk\\|out\\|bin\\|ico\\|pif\\|class\\)$" . t)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 ; MS-Dos stuff
19690
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
52 ("\\.\\(dll\\|drv\\|cpl\\|scr\\vbx\\|386\\|vxd\\|fon\\|fnt\\|fot\\|ttf\\|grp\\)$" . t)
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
53 ; Windows stuff
23393
bcac7111042a (file-name-buffer-file-type-alist): Fix typo in regexp.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22743
diff changeset
54 ("\\.\\(hlp\\|bmp\\|wav\\|avi\\|mpg\\|jpg\\|tif\\|mov\\|au\\)" . t)
19690
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
55 ; known binary data files
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 ; Packers
19690
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
58 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\|jar\\)$" . t)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 ; Unix stuff
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ("\\.tp[ulpw]$" . t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 ; Borland Pascal stuff
22743
ea36144e7977 dos-w32.el (file-name-buffer-file-type-alist): Force tags files to be
Andrew Innes <andrewi@gnu.org>
parents: 22678
diff changeset
62 ("[:/]tags$" . nil)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 ; Emacs TAGS file
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 )
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 "*Alist for distinguishing text files from binary files.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 Each element has the form (REGEXP . TYPE), where REGEXP is matched
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 against the file name, and TYPE is nil for text, t for binary.")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
69 ;; Return the pair matching filename on file-name-buffer-file-type-alist,
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
70 ;; or nil otherwise.
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
71 (defun find-buffer-file-type-match (filename)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
72 (let ((alist file-name-buffer-file-type-alist)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
73 (found nil))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
74 (let ((case-fold-search t))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
75 (setq filename (file-name-sans-versions filename))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
76 (while (and (not found) alist)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
77 (if (string-match (car (car alist)) filename)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
78 (setq found (car alist)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
79 (setq alist (cdr alist)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
80 found)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
81
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
82 ;; Don't check for untranslated file systems here.
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 (defun find-buffer-file-type (filename)
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
84 (let ((match (find-buffer-file-type-match filename))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
85 (code))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
86 (if (not match)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
87 default-buffer-file-type
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
88 (setq code (cdr match))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
89 (cond ((memq code '(nil t)) code)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
90 ((and (symbolp code) (fboundp code))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
91 (funcall code filename))))))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
92
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
93 (setq-default buffer-file-coding-system 'undecided-dos)
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
94
18912
d6d9a466fad2 (find-buffer-file-type-coding-system,
Geoff Voelker <voelker@cs.washington.edu>
parents: 18872
diff changeset
95 (defun find-buffer-file-type-coding-system (command)
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
96 "Choose a coding system for a file operation.
18872
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
97 If COMMAND is `insert-file-contents', the coding system is chosen based
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
98 upon the filename, the contents of `untranslated-filesystem-list' and
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
99 `file-name-buffer-file-type-alist', and whether the file exists:
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
100
18872
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
101 If it matches in `untranslated-filesystem-list':
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
102 If the file exists: `no-conversion'
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
103 If the file does not exist: `undecided'
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
104 If it matches in `file-name-buffer-file-type-alist':
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
105 If the match is t (for binary): `no-conversion'
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
106 If the match is nil (for dos-text): `undecided-dos'
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
107 Otherwise:
18872
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
108 If the file exists: `undecided'
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
109 If the file does not exist: default-buffer-file-coding-system
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
110
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
111 If COMMAND is `write-region', the coding system is chosen based upon
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
112 the value of `buffer-file-coding-system' and `buffer-file-type'. If
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
113 `buffer-file-coding-system' is non-nil, its value is used. If it is
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
114 nil and `buffer-file-type' is t, the coding system is `no-conversion'.
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
115 Otherwise, it is `undecided-dos'.
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
116
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
117 The two most common situations are when DOS and Unix files are read
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
118 and written, and their names do not match in
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
119 `untranslated-filesystem-list' and `file-name-buffer-file-type-alist'.
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
120 In these cases, the coding system initially will be `undecided'. As
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
121 the file is read in the DOS case, the coding system will be changed to
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
122 `undecided-dos' as CR/LFs are detected. As the file is read in the
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
123 Unix case, the coding system will be changed to `undecided-unix' as
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
124 LFs are detected. In both cases, `buffer-file-coding-system' will be
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
125 set to the appropriate coding system, and the value of
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
126 `buffer-file-coding-system' will be used when writing the file."
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
127
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
128 (let ((op (nth 0 command))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
129 (target)
18863
62090ffa4583 (find-buffer-file-type-coding-system):
Richard M. Stallman <rms@gnu.org>
parents: 18858
diff changeset
130 (binary nil) (text nil)
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
131 (undecided nil) (undecided-unix nil))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
132 (cond ((eq op 'insert-file-contents)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
133 (setq target (nth 1 command))
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
134 ;; First check for a file name that indicates
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
135 ;; it is truly binary.
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
136 (setq binary (find-buffer-file-type target))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
137 (cond (binary)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
138 ;; Next check for files that MUST use DOS eol conversion.
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
139 ((find-buffer-file-type-match target)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
140 (setq text t))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
141 ;; For any other existing file, decide based on contents.
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
142 ((file-exists-p target)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
143 (setq undecided t))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
144 ;; Next check for a non-DOS file system.
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
145 ((untranslated-file-p target)
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
146 (setq undecided-unix t)))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
147 (cond (binary '(no-conversion . no-conversion))
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
148 (text '(undecided-dos . undecided-dos))
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
149 (undecided-unix '(undecided-unix . undecided-unix))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
150 (undecided '(undecided . undecided))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
151 (t (cons default-buffer-file-coding-system
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
152 default-buffer-file-coding-system))))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
153 ((eq op 'write-region)
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
154 (if buffer-file-coding-system
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
155 (cons buffer-file-coding-system
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
156 buffer-file-coding-system)
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
157 ;; Normally this is used only in a non-file-visiting
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
158 ;; buffer, because normally buffer-file-coding-system is non-nil
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
159 ;; in a file-visiting buffer.
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
160 (if buffer-file-type
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
161 '(no-conversion . no-conversion)
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
162 '(undecided-dos . undecided-dos)))))))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
163
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
164 (modify-coding-system-alist 'file "" 'find-buffer-file-type-coding-system)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 (defun find-file-binary (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 "Visit file FILENAME and treat it as binary."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 (interactive "FFind file binary: ")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 (let ((file-name-buffer-file-type-alist '(("" . t))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 (find-file filename)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 (defun find-file-text (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 "Visit file FILENAME and treat it as a text file."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 (interactive "FFind file text: ")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 (let ((file-name-buffer-file-type-alist '(("" . nil))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 (find-file filename)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
178 (defun find-file-not-found-set-buffer-file-coding-system ()
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 (save-excursion
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 (set-buffer (current-buffer))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
181 (let* ((dummy-insert-op (list 'insert-file-contents (buffer-file-name)))
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
182 (coding-system-pair
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
183 (find-buffer-file-type-coding-system dummy-insert-op)))
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
184 (setq buffer-file-coding-system (car coding-system-pair))
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
185 (setq buffer-file-type (eq buffer-file-coding-system 'no-conversion)))))
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
187 ;;; To set the default coding system on new files.
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
188 (add-hook 'find-file-not-found-hooks
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
189 'find-file-not-found-set-buffer-file-coding-system)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 ;;; To accomodate filesystems that do not require CR/LF translation.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 (defvar untranslated-filesystem-list nil
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 "List of filesystems that require no CR/LF translation when reading
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 and writing files. Each filesystem in the list is a string naming
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 the directory prefix corresponding to the filesystem.")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 (defun untranslated-canonical-name (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 "Return FILENAME in a canonicalized form for use with the functions
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 dealing with untranslated filesystems."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 (if (memq system-type '(ms-dos windows-nt))
16889
8de32e992e4d Change uses of win32 to w32.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16591
diff changeset
201 ;; The canonical form for DOS/W32 is with A-Z downcased and all
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 ;; directory separators changed to directory-sep-char.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 (let ((name nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 (setq name (mapconcat
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 '(lambda (char)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 (if (and (<= ?A char) (<= char ?Z))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 (char-to-string (+ (- char ?A) ?a))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 (char-to-string char)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 filename nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 ;; Use expand-file-name to canonicalize directory separators, except
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 ;; with bare drive letters (which would have the cwd appended).
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 (if (string-match "^.:$" name)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213 name
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 (expand-file-name name)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 filename))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 (defun untranslated-file-p (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 "Return t if FILENAME is on a filesystem that does not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 CR/LF translation, and nil otherwise."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 (let ((fs (untranslated-canonical-name filename))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 (ufs-list untranslated-filesystem-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 (found nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223 (while (and (not found) ufs-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 (if (string-match (concat "^" (car ufs-list)) fs)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 (setq found t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 (setq ufs-list (cdr ufs-list))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 found))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 (defun add-untranslated-filesystem (filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 "Add FILESYSTEM to the list of filesystems that do not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 CR/LF translation. FILESYSTEM is a string containing the directory
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 prefix corresponding to the filesystem. For example, for a Unix
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
17901
6ea4d90cc76b (add-untranslated-filesystem)
Richard M. Stallman <rms@gnu.org>
parents: 16889
diff changeset
234 (interactive "fUntranslated file system: ")
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 (let ((fs (untranslated-canonical-name filesystem)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 (if (member fs untranslated-filesystem-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 (setq untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 (cons fs untranslated-filesystem-list)))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 (defun remove-untranslated-filesystem (filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 "Remove FILESYSTEM from the list of filesystems that do not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 CR/LF translation. FILESYSTEM is a string containing the directory
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 prefix corresponding to the filesystem. For example, for a Unix
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
17901
6ea4d90cc76b (add-untranslated-filesystem)
Richard M. Stallman <rms@gnu.org>
parents: 16889
diff changeset
246 (interactive "fUntranslated file system: ")
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 (setq untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 (delete (untranslated-canonical-name filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 untranslated-filesystem-list)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
251 ;;; Support for printing under DOS/Windows, see lpr.el and ps-print.el.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
252
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
253 ;; Function to actually send data to the printer port.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
254 ;; Supports writing directly, and using various programs.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
255 (defun direct-print-region-helper (printer
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
256 start end
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
257 lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
258 delete-text buf display
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
259 rest)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
260 (let* ((directory-sep-char ?\\) ; expand file names in DOS format
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
261 ;; Ignore case when matching known external program names.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
262 (case-fold-search t)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
263 ;; Convert / to \ in printer name, for sake of external programs.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
264 (printer
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
265 (if (stringp printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
266 (subst-char-in-string ?/ ?\\ printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
267 printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
268 ;; Find a directory that is local, to work-around Windows bug.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
269 (safe-dir
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
270 (let ((safe-dirs (list "c:/" (getenv "windir") (getenv "TMPDIR"))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
271 (while (not (file-attributes (car safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
272 (setq safe-dirs (cdr safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
273 (car safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
274 (tempfile
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
275 (make-temp-name
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
276 (expand-file-name "EP" (getenv "TMPDIR"))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
277 ;; capture output for diagnosis
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
278 (errbuf (list (get-buffer-create " *print-region-helper*") t)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
279 ;; It seems that we must be careful about the directory name that
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
280 ;; gets added to the printer port name by write-region when using
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
281 ;; the standard "PRN" or "LPTx" ports, because the write can fail if
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
282 ;; the directory is on a network drive. The same is true when
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
283 ;; asking command.com to copy the file.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
284 ;; No action is needed for UNC printer names, which is just as well
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
285 ;; because `expand-file-name' doesn't support UNC names on MS-DOS.
24213
3c29f6165eca (direct-print-region-helper): Check for printer
Geoff Voelker <voelker@cs.washington.edu>
parents: 24092
diff changeset
286 (if (and (stringp printer) (not (string-match "^\\\\" printer)))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
287 (setq printer (expand-file-name printer safe-dir)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
288 ;; Handle known programs specially where necessary.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
289 (unwind-protect
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
290 (cond
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
291 ;; nprint.exe is the standard print command on Netware
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
292 ((string-match "^nprint\\(\\.exe\\)?$" (file-name-nondirectory lpr-prog))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
293 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
294 (call-process lpr-prog nil errbuf nil
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
295 tempfile (concat "P=" printer)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
296 ;; print.exe is a standard command on NT
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
297 ((string-match "^print\\(\\.exe\\)?$" (file-name-nondirectory lpr-prog))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
298 ;; Be careful not to invoke print.exe on MS-DOS or Windows 9x
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
299 ;; though, because it is a TSR program there (hangs Emacs).
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
300 (or (and (eq system-type 'windows-nt)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
301 (null (getenv "winbootdir")))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
302 (error "Printing via print.exe is not supported on MS-DOS or Windows 9x"))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
303 ;; It seems that print.exe always appends a form-feed so we
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
304 ;; should make sure to omit the last FF in the data.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
305 (if (and (> end start)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
306 (char-equal (char-before end) ?\C-l))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
307 (setq end (1- end)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
308 ;; cancel out annotate function for non-PS case
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
309 (let ((write-region-annotate-functions nil))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
310 (write-region start end tempfile nil 0))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
311 (call-process lpr-prog nil errbuf nil
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
312 (concat "/D:" printer) tempfile))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
313 ;; support lpr and similar programs for convenience, but
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
314 ;; supply an explicit filename because the NT version of lpr
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
315 ;; can't read from stdin.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
316 ((> (length lpr-prog) 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
317 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
318 (setq rest (append rest (list tempfile)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
319 (apply 'call-process lpr-prog nil errbuf nil rest))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
320 ;; Run command.com to access printer port on Windows 9x, unless
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
321 ;; we are supposed to append to an existing (non-empty) file,
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
322 ;; to work around a bug in Windows 9x that prevents Win32
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
323 ;; programs from accessing LPT ports reliably.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
324 ((and (eq system-type 'windows-nt)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
325 (getenv "winbootdir")
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
326 ;; file-attributes fails on LPT ports on Windows 9x but
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
327 ;; not on NT, so handle both cases for safety.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
328 (eq (or (nth 7 (file-attributes printer)) 0) 0))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
329 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
330 (let ((w32-quote-process-args nil))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
331 (call-process "command.com" nil errbuf nil "/c"
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
332 (format "copy /b %s %s" tempfile printer))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
333 ;; write directly to the printer port
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
334 (t
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
335 (write-region start end printer t 0)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
336 ;; ensure we remove the tempfile if created
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
337 (if (file-exists-p tempfile)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
338 (delete-file tempfile)))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
339
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
340 (defvar printer-name)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
341
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
342 (defun direct-print-region-function (start end
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
343 &optional lpr-prog
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
344 delete-text buf display
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
345 &rest rest)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
346 "DOS/Windows-specific function to print the region on a printer.
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
347 Writes the region to the device or file which is a value of
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
348 `printer-name' \(which see\), unless the value of `lpr-command'
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
349 indicates a specific program should be invoked."
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
350
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
351 ;; DOS printers need the lines to end with CR-LF pairs, so make
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
352 ;; sure it always happens that way, unless the buffer is binary.
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
353 (let* ((coding coding-system-for-write)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
354 (coding-base
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
355 (if (null coding) 'undecided (coding-system-base coding)))
23802
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
356 (eol-type (coding-system-eol-type coding-base))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
357 ;; Make each print-out eject the final page, but don't waste
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
358 ;; paper if the file ends with a form-feed already.
23802
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
359 (write-region-annotate-functions
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
360 (cons
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
361 (lambda (start end)
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
362 (if (not (char-equal (char-before end) ?\C-l))
23802
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
363 `((,end . "\f"))))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
364 write-region-annotate-functions))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
365 (printer (or (and (boundp 'dos-printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
366 (stringp (symbol-value 'dos-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
367 (symbol-value 'dos-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
368 printer-name)))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
369 (or (eq coding-system-for-write 'no-conversion)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
370 (setq coding-system-for-write
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
371 (aref eol-type 1))) ; force conversion to DOS EOLs
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
372 (direct-print-region-helper printer start end lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
373 delete-text buf display rest)))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
374
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
375 (setq print-region-function 'direct-print-region-function)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
376
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
377 ;; Set this to nil if you have a port of the `pr' program
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
378 ;; (e.g., from GNU Textutils), or if you have an `lpr'
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
379 ;; program (see above) that can print page headers.
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
380 ;; If `lpr-headers-switches' is non-nil (the default) and
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
381 ;; `print-region-function' is set to `dos-print-region-function',
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
382 ;; then requests to print page headers will be silently
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
383 ;; ignored, and `print-buffer' and `print-region' produce
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
384 ;; the same output as `lpr-buffer' and `lpr-region', accordingly.
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
385 (setq lpr-headers-switches "(page headers are not supported)")
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
386
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
387 (defvar ps-printer-name)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
388
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
389 (defun direct-ps-print-region-function (start end
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
390 &optional lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
391 delete-text buf display
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
392 &rest rest)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
393 "DOS/Windows-specific function to print the region on a PostScript printer.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
394 Writes the region to the device or file which is a value of
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
395 `ps-printer-name' \(which see\), unless the value of `ps-lpr-command'
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
396 indicates a specific program should be invoked."
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
397
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
398 (let ((printer (or (and (boundp 'dos-ps-printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
399 (stringp (symbol-value 'dos-ps-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
400 (symbol-value 'dos-ps-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
401 ps-printer-name)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
402 (direct-print-region-helper printer start end lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
403 delete-text buf display rest)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
404
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
405 (setq ps-print-region-function 'direct-ps-print-region-function)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
406
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
407 ;(setq ps-lpr-command "gs")
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
408
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
409 ;(setq ps-lpr-switches '("-q" "-dNOPAUSE" "-sDEVICE=epson" "-r240x60"
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
410 ; "-sOutputFile=LPT1"))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
411
16591
afb15f49a0c9 Use new file name dos-w32.el
Geoff Voelker <voelker@cs.washington.edu>
parents: 16234
diff changeset
412 (provide 'dos-w32)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413
16591
afb15f49a0c9 Use new file name dos-w32.el
Geoff Voelker <voelker@cs.washington.edu>
parents: 16234
diff changeset
414 ;;; dos-w32.el ends here