annotate lisp/dos-w32.el @ 24913:76764b2157af

(untranslated-canonical-name): Avoid expanding ange-ftp file names, which might force ange-ftp to prompt for a password.
author Andrew Innes <andrewi@gnu.org>
date Thu, 01 Jul 1999 19:42:42 +0000
parents 7de5cc79a8b4
children f1d437596538
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
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
49 ("\\.\\(obj\\|exe\\|com\\|lib\\|sys\\|bin\\|ico\\|pif\\|class\\)$" . t)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 ; MS-Dos stuff
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
51 ("\\.\\(dll\\|drv\\|386\\|vxd\\|fon\\|fnt\\|fot\\|ttf\\|grp\\)$" . t)
19690
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
52 ; Windows stuff
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
53 ("\\.\\(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
54 ; known binary data files
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 ; Packers
19690
ceed5706d45e (file-name-buffer-file-type-alist): Add more
Geoff Voelker <voelker@cs.washington.edu>
parents: 19656
diff changeset
57 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\|jar\\)$" . t)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 ; Unix stuff
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 ("\\.tp[ulpw]$" . t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ; 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
61 ("[:/]tags$" . nil)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 ; Emacs TAGS file
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 )
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 "*Alist for distinguishing text files from binary files.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 Each element has the form (REGEXP . TYPE), where REGEXP is matched
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 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
67
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
68 ;; 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
69 ;; or nil otherwise.
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
70 (defun find-buffer-file-type-match (filename)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
71 (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
72 (found nil))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
73 (let ((case-fold-search t))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
74 (setq filename (file-name-sans-versions filename))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
75 (while (and (not found) alist)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
76 (if (string-match (car (car alist)) filename)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
77 (setq found (car alist)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
78 (setq alist (cdr alist)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
79 found)))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
80
19656
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
81 ;; Don't check for untranslated file systems here.
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 (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
83 (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
84 (code))
98e7893f8679 (find-buffer-file-type): Don't check for untranslated file systems here.
Richard M. Stallman <rms@gnu.org>
parents: 19400
diff changeset
85 (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
86 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
87 (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
88 (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
89 ((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
90 (funcall code filename))))))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
91
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
92 (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
93
18912
d6d9a466fad2 (find-buffer-file-type-coding-system,
Geoff Voelker <voelker@cs.washington.edu>
parents: 18872
diff changeset
94 (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
95 "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
96 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
97 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
98 `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
99
18872
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
100 If it matches in `untranslated-filesystem-list':
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
101 If the file exists: `no-conversion'
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
102 If the file does not exist: `undecided'
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
103 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
104 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
105 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
106 Otherwise:
18872
8c7bcffd7327 (find-buffer-file-type-coding-system):
Geoff Voelker <voelker@cs.washington.edu>
parents: 18863
diff changeset
107 If the file exists: `undecided'
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
108 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
109
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
110 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
111 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
112 `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
113 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
114 Otherwise, it is `undecided-dos'.
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
115
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
116 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
117 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
118 `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
119 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
120 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
121 `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
122 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
123 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
124 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
125 `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
126
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
127 (let ((op (nth 0 command))
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
128 (target)
18863
62090ffa4583 (find-buffer-file-type-coding-system):
Richard M. Stallman <rms@gnu.org>
parents: 18858
diff changeset
129 (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
130 (undecided nil) (undecided-unix nil))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
131 (cond ((eq op 'insert-file-contents)
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
132 (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
133 ;; 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
134 ;; 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
135 (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
136 (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
137 ;; 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
138 ((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
139 (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
140 ;; 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
141 ((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
142 (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
143 ;; 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
144 ((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
145 (setq undecided-unix t)))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
146 (cond (binary '(no-conversion . no-conversion))
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
147 (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
148 (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
149 (undecided '(undecided . undecided))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
150 (t (cons default-buffer-file-coding-system
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
151 default-buffer-file-coding-system))))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
152 ((eq op 'write-region)
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
153 (if buffer-file-coding-system
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
154 (cons buffer-file-coding-system
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
155 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
156 ;; 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
157 ;; 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
158 ;; in a file-visiting buffer.
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
159 (if buffer-file-type
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
160 '(no-conversion . no-conversion)
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
161 '(undecided-dos . undecided-dos)))))))
18858
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
162
ad717015a2de (find-buffer-file-type-coding-system)
Richard M. Stallman <rms@gnu.org>
parents: 17901
diff changeset
163 (modify-coding-system-alist 'file "" 'find-buffer-file-type-coding-system)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 (defun find-file-binary (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 "Visit file FILENAME and treat it as binary."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 (interactive "FFind file binary: ")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 (let ((file-name-buffer-file-type-alist '(("" . t))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 (find-file filename)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 (defun find-file-text (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 "Visit file FILENAME and treat it as a text file."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 (interactive "FFind file text: ")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 (let ((file-name-buffer-file-type-alist '(("" . nil))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 (find-file filename)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
177 (defun find-file-not-found-set-buffer-file-coding-system ()
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 (save-excursion
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 (set-buffer (current-buffer))
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
180 (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
181 (coding-system-pair
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
182 (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
183 (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
184 (setq buffer-file-type (eq buffer-file-coding-system 'no-conversion)))))
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185
19400
95183e63d1dd Set default coding system to undecided-dos.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18912
diff changeset
186 ;;; 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
187 (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
188 'find-file-not-found-set-buffer-file-coding-system)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 ;;; To accomodate filesystems that do not require CR/LF translation.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 (defvar untranslated-filesystem-list nil
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 "List of filesystems that require no CR/LF translation when reading
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 and writing files. Each filesystem in the list is a string naming
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 the directory prefix corresponding to the filesystem.")
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 (defun untranslated-canonical-name (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 "Return FILENAME in a canonicalized form for use with the functions
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 dealing with untranslated filesystems."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 (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
200 ;; 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
201 ;; directory separators changed to directory-sep-char.
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 (let ((name nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 (setq name (mapconcat
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 '(lambda (char)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 (if (and (<= ?A char) (<= char ?Z))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 (char-to-string (+ (- char ?A) ?a))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 (char-to-string char)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 filename nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 ;; Use expand-file-name to canonicalize directory separators, except
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 ;; with bare drive letters (which would have the cwd appended).
24913
76764b2157af (untranslated-canonical-name): Avoid expanding
Andrew Innes <andrewi@gnu.org>
parents: 24658
diff changeset
211 ;; Avoid expanding names that could trigger ange-ftp to prompt
76764b2157af (untranslated-canonical-name): Avoid expanding
Andrew Innes <andrewi@gnu.org>
parents: 24658
diff changeset
212 ;; for passwords, though.
76764b2157af (untranslated-canonical-name): Avoid expanding
Andrew Innes <andrewi@gnu.org>
parents: 24658
diff changeset
213 (if (or (string-match "^.:$" name)
76764b2157af (untranslated-canonical-name): Avoid expanding
Andrew Innes <andrewi@gnu.org>
parents: 24658
diff changeset
214 (string-match "^/[^/:]+:" name))
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 name
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 (expand-file-name name)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 filename))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 (defun untranslated-file-p (filename)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 "Return t if FILENAME is on a filesystem that does not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 CR/LF translation, and nil otherwise."
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 (let ((fs (untranslated-canonical-name filename))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223 (ufs-list untranslated-filesystem-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 (found nil))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 (while (and (not found) ufs-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 (if (string-match (concat "^" (car ufs-list)) fs)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 (setq found t)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 (setq ufs-list (cdr ufs-list))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 found))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 (defun add-untranslated-filesystem (filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 "Add FILESYSTEM to the list of filesystems that do not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 CR/LF translation. FILESYSTEM is a string containing the directory
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234 prefix corresponding to the filesystem. For example, for a Unix
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
17901
6ea4d90cc76b (add-untranslated-filesystem)
Richard M. Stallman <rms@gnu.org>
parents: 16889
diff changeset
236 (interactive "fUntranslated file system: ")
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 (let ((fs (untranslated-canonical-name filesystem)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 (if (member fs untranslated-filesystem-list)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 (setq untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 (cons fs untranslated-filesystem-list)))))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 (defun remove-untranslated-filesystem (filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 "Remove FILESYSTEM from the list of filesystems that do not require
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 CR/LF translation. FILESYSTEM is a string containing the directory
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 prefix corresponding to the filesystem. For example, for a Unix
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
17901
6ea4d90cc76b (add-untranslated-filesystem)
Richard M. Stallman <rms@gnu.org>
parents: 16889
diff changeset
248 (interactive "fUntranslated file system: ")
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 (setq untranslated-filesystem-list
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 (delete (untranslated-canonical-name filesystem)
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 untranslated-filesystem-list)))
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
253 ;;; 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
254
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
255 (defvar direct-print-region-use-command-dot-com t
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
256 "*Control whether command.com is used to print on Windows 9x.")
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
257
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
258 ;; 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
259 ;; Supports writing directly, and using various programs.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
260 (defun direct-print-region-helper (printer
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
261 start end
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
262 lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
263 delete-text buf display
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
264 rest)
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
265 (let* (;; Ignore case when matching known external program names.
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
266 (case-fold-search t)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
267 ;; 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
268 (printer
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
269 (if (stringp printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
270 (subst-char-in-string ?/ ?\\ printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
271 printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
272 ;; 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
273 (safe-dir
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
274 (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
275 (while (not (file-attributes (car safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
276 (setq safe-dirs (cdr safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
277 (car safe-dirs)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
278 (tempfile
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
279 (subst-char-in-string
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
280 ?/ ?\\
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
281 (make-temp-name
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
282 (expand-file-name "EP" (getenv "TMPDIR")))))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
283 ;; capture output for diagnosis
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
284 (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
285 ;; 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
286 ;; 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
287 ;; 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
288 ;; 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
289 ;; asking command.com to copy the file.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
290 ;; 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
291 ;; 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
292 (if (and (stringp printer) (not (string-match "^\\\\" printer)))
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
293 (setq printer
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
294 (subst-char-in-string ?/ ?\\ (expand-file-name printer safe-dir))))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
295 ;; Handle known programs specially where necessary.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
296 (unwind-protect
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
297 (cond
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
298 ;; 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
299 ((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
300 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
301 (call-process lpr-prog nil errbuf nil
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
302 tempfile (concat "P=" printer)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
303 ;; 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
304 ((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
305 ;; 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
306 ;; 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
307 (or (and (eq system-type 'windows-nt)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
308 (null (getenv "winbootdir")))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
309 (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
310 ;; 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
311 ;; 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
312 (if (and (> end start)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
313 (char-equal (char-before end) ?\C-l))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
314 (setq end (1- end)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
315 ;; 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
316 (let ((write-region-annotate-functions nil))
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 (call-process lpr-prog nil errbuf nil
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
319 (concat "/D:" printer) tempfile))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
320 ;; 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
321 ;; 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
322 ;; can't read from stdin.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
323 ((> (length lpr-prog) 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
324 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
325 (setq rest (append rest (list tempfile)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
326 (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
327 ;; 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
328 ;; 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
329 ;; 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
330 ;; programs from accessing LPT ports reliably.
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
331 ((and (eq system-type 'windows-nt)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
332 (getenv "winbootdir")
24658
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
333 ;; Allow cop-out so command.com isn't invoked
7de5cc79a8b4 (file-name-buffer-file-type-alist): Remove various
Andrew Innes <andrewi@gnu.org>
parents: 24515
diff changeset
334 direct-print-region-use-command-dot-com
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
335 ;; 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
336 ;; 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
337 (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
338 (write-region start end tempfile nil 0)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
339 (let ((w32-quote-process-args nil))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
340 (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
341 (format "copy /b %s %s" tempfile printer))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
342 ;; write directly to the printer port
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
343 (t
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
344 (write-region start end printer t 0)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
345 ;; ensure we remove the tempfile if created
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
346 (if (file-exists-p tempfile)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
347 (delete-file tempfile)))))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
348
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
349 (defvar printer-name)
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 (defun direct-print-region-function (start end
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
352 &optional lpr-prog
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
353 delete-text buf display
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
354 &rest rest)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
355 "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
356 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
357 `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
358 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
359
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
360 ;; 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
361 ;; 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
362 (let* ((coding coding-system-for-write)
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
363 (coding-base
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
364 (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
365 (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
366 ;; 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
367 ;; 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
368 (write-region-annotate-functions
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
369 (cons
4052a2875390 (direct-print-region-function): Try to ensure that
Geoff Voelker <voelker@cs.washington.edu>
parents: 23682
diff changeset
370 (lambda (start end)
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
371 (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
372 `((,end . "\f"))))
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
373 write-region-annotate-functions))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
374 (printer (or (and (boundp 'dos-printer)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
375 (stringp (symbol-value 'dos-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
376 (symbol-value 'dos-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
377 printer-name)))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
378 (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
379 (setq coding-system-for-write
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
380 (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
381 (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
382 delete-text buf display rest)))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
383
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
384 (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
385
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
386 ;; 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
387 ;; (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
388 ;; 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
389 ;; 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
390 ;; `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
391 ;; 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
392 ;; 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
393 ;; 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
394 (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
395
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
396 (defvar ps-printer-name)
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 (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
399 &optional lpr-prog
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
400 delete-text buf display
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
401 &rest rest)
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
402 "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
403 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
404 `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
405 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
406
24092
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
407 (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
408 (stringp (symbol-value 'dos-ps-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
409 (symbol-value 'dos-ps-printer))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
410 ps-printer-name)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
411 (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
412 delete-text buf display rest)))
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
413
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
414 (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
415
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
416 ;(setq ps-lpr-command "gs")
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
417
d98712ec1252 (find-buffer-file-type-coding-system): Use
Andrew Innes <andrewi@gnu.org>
parents: 23802
diff changeset
418 ;(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
419 ; "-sOutputFile=LPT1"))
22678
e3fe83134880 (direct-print-region-function): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 22607
diff changeset
420
16591
afb15f49a0c9 Use new file name dos-w32.el
Geoff Voelker <voelker@cs.washington.edu>
parents: 16234
diff changeset
421 (provide 'dos-w32)
16026
9e883e873c01 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422
16591
afb15f49a0c9 Use new file name dos-w32.el
Geoff Voelker <voelker@cs.washington.edu>
parents: 16234
diff changeset
423 ;;; dos-w32.el ends here