Initial revision
[emacs.git] / lisp / dos-fns.el
blobb7202d9c2c79c80563f4a3c753793cbe58bf0b85
1 ;;; dos-fns.el --- MS-Dos specific functions.
3 ;; Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc.
5 ;; Maintainer: Morten Welinder (terra@diku.dk)
6 ;; Keywords: internal
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; Part of this code is taken from (or derived from) demacs.
29 ;;; Code:
31 ;;; Add %t: into the mode line format just after the open-paren.
32 (let ((tail (member " %[(" mode-line-format)))
33 (setcdr tail (cons (purecopy "%t:")
34 (cdr tail))))
36 ;; Use ";" instead of ":" as a path separator (from files.el).
37 (setq path-separator ";")
39 ;; Set the null device (for compile.el).
40 (setq grep-null-device "NUL")
42 ;; Set the grep regexp to match entries with drive letters.
43 (setq grep-regexp-alist
44 '(("^\\(\\([a-zA-Z]:\\)?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 3)))
46 ;; This overrides a trivial definition in files.el.
47 (defun convert-standard-filename (filename)
48 "Convert a standard file's name to something suitable for the current OS.
49 This function's standard definition is trivial; it just returns the argument.
50 However, on some systems, the function is redefined
51 with a definition that really does change some file names."
52 (let ((dir (file-name-directory filename))
53 (string (copy-sequence (file-name-nondirectory filename)))
54 i firstdot)
55 ;; Change a leading period to a leading underscore.
56 (if (= (aref string 0) ?.)
57 (aset string 0 ?_))
58 ;; Get rid of invalid characters.
59 (while (setq i (string-match "[^a-zA-Z0-9_.%~]" string))
60 (aset string i ?_))
61 ;; If we don't have a period,
62 ;; and we have a dash or underscore that isn't the first char,
63 ;; change that to a period.
64 (if (and (not (string-match "\\." string))
65 (setq i (string-match "[-_]" string 1)))
66 (aset string i ?\.))
67 ;; If we don't have a period in the first 8 chars, insert one.
68 (if (> (or (string-match "\\." string)
69 (length string))
71 (setq string
72 (concat (substring string 0 8)
73 "."
74 (substring string 8))))
75 (setq firstdot (or (string-match "\\." string) (1- (length string))))
76 ;; Truncate to 3 chars after the first period.
77 (if (> (length string) (+ firstdot 4))
78 (setq string (substring string 0 (+ firstdot 4))))
79 ;; Change all periods except the first one into underscores.
80 (while (string-match "\\." string (1+ firstdot))
81 (setq i (string-match "\\." string (1+ firstdot)))
82 (aset string i ?_))
83 (concat dir string)))
85 (defvar file-name-buffer-file-type-alist
87 ("[:/].*config.sys$" . nil) ; config.sys text
88 ("\\.elc$" . t) ; emacs stuff
89 ("\\.\\(obj\\|exe\\|com\\|lib\\|sys\\|chk\\|out\\|bin\\|ico\\|pif\\)$" . t)
90 ; MS-Dos stuff
91 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t)
92 ; Packers
93 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\)$" . t)
94 ; Unix stuff
95 ("\\.tp[ulpw]$" . t)
96 ; Borland Pascal stuff
97 ("[:/]tags$" . t)
98 ; Emacs TAGS file
100 "*Alist for distinguishing text files from binary files.
101 Each element has the form (REGEXP . TYPE), where REGEXP is matched
102 against the file name, and TYPE is nil for text, t for binary.")
104 (defun find-buffer-file-type (filename)
105 (let ((alist file-name-buffer-file-type-alist)
106 (found nil)
107 (code nil))
108 (let ((case-fold-search t))
109 (setq filename (file-name-sans-versions filename))
110 (while (and (not found) alist)
111 (if (string-match (car (car alist)) filename)
112 (setq code (cdr (car alist))
113 found t))
114 (setq alist (cdr alist))))
115 (if found
116 (cond((memq code '(nil t)) code)
117 ((and (symbolp code) (fboundp code))
118 (funcall code filename)))
119 default-buffer-file-type)))
121 (defun find-file-binary (filename)
122 "Visit file FILENAME and treat it as binary."
123 (interactive "FFind file binary: ")
124 (let ((file-name-buffer-file-type-alist '(("" . t))))
125 (find-file filename)))
127 (defun find-file-text (filename)
128 "Visit file FILENAME and treat it as a text file."
129 (interactive "FFind file text: ")
130 (let ((file-name-buffer-file-type-alist '(("" . nil))))
131 (find-file filename)))
133 (defun find-file-not-found-set-buffer-file-type ()
134 (save-excursion
135 (set-buffer (current-buffer))
136 (setq buffer-file-type (find-buffer-file-type (buffer-file-name))))
137 nil)
139 ;;; To set the default file type on new files.
140 (add-hook 'find-file-not-found-hooks 'find-file-not-found-set-buffer-file-type)
142 (defvar msdos-shells '("command.com" "4dos.com" "ndos.com")
143 "*List of shells that use `/c' instead of `-c' and a backslashed command.")
145 (defconst register-name-alist
146 '((ax . 0) (bx . 1) (cx . 2) (dx . 3) (si . 4) (di . 5)
147 (cflag . 6) (flags . 7)
148 (al . (0 . 0)) (bl . (1 . 0)) (cl . (2 . 0)) (dl . (3 . 0))
149 (ah . (0 . 1)) (bh . (1 . 1)) (ch . (2 . 1)) (dh . (3 . 1))))
151 (defun make-register ()
152 (make-vector 8 0))
154 (defun register-value (regs name)
155 (let ((where (cdr (assoc name register-name-alist))))
156 (cond ((consp where)
157 (let ((tem (aref regs (car where))))
158 (if (zerop (cdr where))
159 (% tem 256)
160 (/ tem 256))))
161 ((numberp where)
162 (aref regs where))
163 (t nil))))
165 (defun set-register-value (regs name value)
166 (and (numberp value)
167 (>= value 0)
168 (let ((where (cdr (assoc name register-name-alist))))
169 (cond ((consp where)
170 (let ((tem (aref regs (car where)))
171 (value (logand value 255)))
172 (aset regs
173 (car where)
174 (if (zerop (cdr where))
175 (logior (logand tem 65280) value)
176 (logior (logand tem 255) (lsh value 8))))))
177 ((numberp where)
178 (aset regs where (logand value 65535))))))
179 regs)
181 (defsubst intdos (regs)
182 (int86 33 regs))
184 ;; Extra stub to functions in src/frame.c
185 ;; Emacs aborts during dump if the following don't have a doc string.
186 (defun window-frame (window)
187 "Return the frame that WINDOW resides on."
188 (selected-frame))
189 (defun raise-frame (frame)
190 "Raise FRAME to the top of the desktop."
191 nil)
192 (defun select-frame (frame &optional no-enter)
193 "Select FRAME for input events."
194 (selected-frame))
196 ;; Support for printing under MS-DOS, see lpr.el and ps-print.el.
197 (defvar dos-printer "PRN"
198 "*The name of a local MS-DOS device to which data is sent for printing.
199 \(Note that PostScript files are sent to `dos-ps-printer', which see.\)
201 Typical non-default settings would be \"LPT1\" to \"LPT3\" for
202 parallel printers, or \"COM1\" to \"COM4\" or \"AUX\" for serial
203 printers. You can also set it to a name of a file, in which
204 case the output gets appended to that file.
205 If you want to discard the printed output, set this to \"NUL\".")
207 (defun dos-print-region-function (start end
208 &optional lpr-prog
209 delete-text buf display rest)
210 "MS-DOS-specific function to print the region on a printer.
211 Writes the region to the device or file which is a value of
212 `dos-printer' \(which see\). Ignores any arguments beyond
213 START and END."
215 (write-region start end dos-printer t 0)
216 ;; Make each print-out start on a new page, but don't waste
217 ;; paper if there was a form-feed at the end of this file.
218 (if (not (char-equal (char-after (1- end)) ?\C-l))
219 (write-region "\f" nil dos-printer t 0)))
221 ;; Set this to nil if you have a port of the `lpr' program and
222 ;; you want to use it for printing. If the default setting is
223 ;; in effect, `lpr-command' and its switches are ignored when
224 ;; printing with `lpr-xxx' and `print-xxx'.
225 (setq print-region-function 'dos-print-region-function)
227 ;; Set this to nil if you have a port of the `pr' program
228 ;; (e.g., from GNU Textutils), or if you have an `lpr'
229 ;; program (see above) that can print page headers.
230 ;; If `lpr-headers-switches' is non-nil (the default) and
231 ;; `print-region-function' is set to `dos-print-region-function',
232 ;; then requests to print page headers will be silently
233 ;; ignored, and `print-buffer' and `print-region' produce
234 ;; the same output as `lpr-buffer' and `lpr-region', accordingly.
235 (setq lpr-headers-switches "(page headers are not supported)")
237 (defvar dos-ps-printer "PRN"
238 "*Method for printing PostScript files under MS-DOS.
240 If the value is a string, then it is taken as the name of the
241 device to which PostScript files are written. By default it
242 is the default printer device; typical non-default settings
243 would be \"LPT1\" to \"LPT3\" for parallel printers, or \"COM1\"
244 to \"COM4\" or \"AUX\" for serial printers. You can also set it
245 to a name of a file, in which case the output gets appended
246 to that file. \(Note that `ps-print' package already has
247 facilities for printing to a file, so you might as well use
248 them instead of changing the setting of this variable.\) If
249 you want to silently discard the printed output, set this to \"NUL\".
251 If the value is anything but a string, PostScript files will be
252 piped to the program given by `ps-lpr-command', with switches
253 given by `ps-lpr-switches', which see.")
255 (setq ps-lpr-command "gs")
257 (setq ps-lpr-switches '("-q" "-dNOPAUSE" "-sDEVICE=epson" "-r240x60"
258 "-sOutputFile=LPT1" "-"))
260 (provide 'dos-fns)
262 ; dos-fns.el ends here