(Recovering mail files when Rmail munges them): Document b2m.
[bpt/emacs.git] / lisp / dos-fns.el
CommitLineData
e8af40ee 1;;; dos-fns.el --- MS-Dos specific functions
007c61fa 2
9596811a 3;; Copyright (C) 1991, 1993, 1995, 1996 Free Software Foundation, Inc.
007c61fa 4
0acdb863 5;; Maintainer: Morten Welinder <terra@diku.dk>
007c61fa
RS
6;; Keywords: internal
7
8;; This file is part of GNU Emacs.
9
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.
14
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.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
007c61fa
RS
24
25;;; Commentary:
26
27;; Part of this code is taken from (or derived from) demacs.
28
29;;; Code:
30
44998f5b
RS
31;; This overrides a trivial definition in files.el.
32(defun convert-standard-filename (filename)
33 "Convert a standard file's name to something suitable for the current OS.
34This function's standard definition is trivial; it just returns the argument.
35However, on some systems, the function is redefined
36with a definition that really does change some file names."
09def38b 37 (if (or (not (stringp filename))
9d47450f
EZ
38 ;; This catches the case where FILENAME is "x:" or "x:/" or
39 ;; "/", thus preventing infinite recursion.
40 (string-match "\\`\\([a-zA-Z]:\\)?[/\\]?\\'" filename))
9c777199 41 filename
9d47450f
EZ
42 (let ((flen (length filename)))
43 ;; If FILENAME has a trailing slash, remove it and recurse.
44 (if (memq (aref filename (1- flen)) '(?/ ?\\))
45 (concat (convert-standard-filename
46 (substring filename 0 (1- flen)))
47 "/")
48 (let* (;; ange-ftp gets in the way for names like "/foo:bar".
49 ;; We need to inhibit all magic file names, because
50 ;; remote file names should never be passed through
51 ;; this function, as they are not meant for the local
52 ;; filesystem!
53 (file-name-handler-alist nil)
54 (dir
55 ;; If FILENAME is "x:foo", file-name-directory returns
56 ;; "x:/bar/baz", substituting the current working
57 ;; directory on drive x:. We want to be left with "x:"
58 ;; instead.
59 (if (and (< 1 flen)
60 (eq (aref filename 1) ?:)
61 (null (string-match "[/\\]" filename)))
62 (substring filename 0 2)
63 (file-name-directory filename)))
64 (dlen-m-1 (1- (length dir)))
65 (string (copy-sequence (file-name-nondirectory filename)))
66 (lastchar (aref string (1- (length string))))
67 i firstdot)
68 (cond
69 ((msdos-long-file-names)
09def38b
EZ
70 ;; Replace characters that are invalid even on Windows.
71 (while (setq i (string-match "[?*:<>|\"\000-\037]" string))
9d47450f
EZ
72 (aset string i ?!)))
73 ((not (member string '("" "." "..")))
74 ;; Change a leading period to a leading underscore.
75 (if (= (aref string 0) ?.)
76 (aset string 0 ?_))
77 ;; Get rid of invalid characters.
78 (while (setq i (string-match
79 "[^-a-zA-Z0-9_.%~^$!#&{}@`'()\200-\376]"
80 string))
81 (aset string i ?_))
82 ;; If we don't have a period,
83 ;; and we have a dash or underscore that isn't the first char,
84 ;; change that to a period.
85 (if (and (not (string-match "\\." string))
86 (setq i (string-match "[-_]" string 1)))
87 (aset string i ?\.))
88 ;; If we don't have a period in the first 8 chars, insert one.
89 (if (> (or (string-match "\\." string) (length string))
90 8)
91 (setq string
92 (concat (substring string 0 8)
93 "."
94 (substring string 8))))
95 (setq firstdot (or (string-match "\\." string)
96 (1- (length string))))
97 ;; Truncate to 3 chars after the first period.
98 (if (> (length string) (+ firstdot 4))
99 (setq string (substring string 0 (+ firstdot 4))))
100 ;; Change all periods except the first one into underscores.
101 (while (string-match "\\." string (1+ firstdot))
102 (setq i (string-match "\\." string (1+ firstdot)))
103 (aset string i ?_))
104 ;; If the last character of the original filename was `~',
105 ;; make sure the munged name ends with it also. This is so
106 ;; a backup file retains its final `~'.
107 (if (equal lastchar ?~)
108 (aset string (1- (length string)) lastchar))))
109 (concat (if (and (stringp dir)
110 (memq (aref dir dlen-m-1) '(?/ ?\\)))
111 (concat (convert-standard-filename
112 (substring dir 0 dlen-m-1))
113 "/")
114 (convert-standard-filename dir))
115 string))))))
44998f5b 116
51f32106 117(defun dos-8+3-filename (filename)
a9d36252
EZ
118 "Truncate FILENAME to DOS 8+3 limits."
119 (if (or (not (stringp filename))
120 (< (length filename) 5)) ; too short to give any trouble
121 filename
122 (let ((flen (length filename)))
123 ;; If FILENAME has a trailing slash, remove it and recurse.
124 (if (memq (aref filename (1- flen)) '(?/ ?\\))
51f32106 125 (concat (dos-8+3-filename (substring filename 0 (1- flen)))
a9d36252
EZ
126 "/")
127 (let* (;; ange-ftp gets in the way for names like "/foo:bar".
128 ;; We need to inhibit all magic file names, because
129 ;; remote file names should never be passed through
130 ;; this function, as they are not meant for the local
131 ;; filesystem!
132 (file-name-handler-alist nil)
133 (dir
134 ;; If FILENAME is "x:foo", file-name-directory returns
135 ;; "x:/bar/baz", substituting the current working
136 ;; directory on drive x:. We want to be left with "x:"
137 ;; instead.
138 (if (and (< 1 flen)
139 (eq (aref filename 1) ?:)
140 (null (string-match "[/\\]" filename)))
141 (substring filename 0 2)
142 (file-name-directory filename)))
143 (dlen-m-1 (1- (length dir)))
144 (string (copy-sequence (file-name-nondirectory filename)))
145 (strlen (length string))
146 (lastchar (aref string (1- strlen)))
147 i firstdot)
148 (setq firstdot (string-match "\\." string))
149 (cond
150 (firstdot
151 ;; Truncate the extension to 3 characters.
152 (if (> strlen (+ firstdot 4))
153 (setq string (substring string 0 (+ firstdot 4))))
154 ;; Truncate the basename to 8 characters.
155 (if (> firstdot 8)
156 (setq string (concat (substring string 0 8)
157 "."
158 (substring string (1+ firstdot))))))
159 ((> strlen 8)
160 ;; No dot; truncate file name to 8 characters.
161 (setq string (substring string 0 8))))
162 ;; If the last character of the original filename was `~',
163 ;; make sure the munged name ends with it also. This is so
164 ;; a backup file retains its final `~'.
165 (if (equal lastchar ?~)
166 (aset string (1- (length string)) lastchar))
167 (concat (if (and (stringp dir)
168 (memq (aref dir dlen-m-1) '(?/ ?\\)))
51f32106 169 (concat (dos-8+3-filename (substring dir 0 dlen-m-1))
a9d36252
EZ
170 "/")
171 ;; Recurse to truncate the leading directories.
51f32106 172 (dos-8+3-filename dir))
a9d36252
EZ
173 string))))))
174
8aee7d44
EZ
175;; Make sure auto-save file names don't contain characters invalid for
176;; the underlying filesystem. This is particularly annoying with
177;; `compose-mail's *mail* buffers: `*' is not allowed in file names on
178;; DOS/Windows, so Emacs bitches on you each time it tries to autosave
179;; the message being composed.
180(fset 'original-make-auto-save-file-name
181 (symbol-function 'make-auto-save-file-name))
182
183(defun make-auto-save-file-name ()
184 "Return file name to use for auto-saves of current buffer.
185Does not consider `auto-save-visited-file-name' as that variable is checked
186before calling this function. You can redefine this for customization.
187See also `auto-save-file-name-p'."
188 (let ((filename (original-make-auto-save-file-name)))
189 ;; Don't modify remote (ange-ftp) filenames
190 (if (string-match "^/\\w+@[-A-Za-z0-9._]+:" filename)
191 filename
192 (convert-standard-filename filename))))
193
feb65403
RS
194;; See dos-vars.el for defcustom.
195(defvar msdos-shells)
007c61fa 196
224116b8
AI
197;;; Override setting chosen at startup.
198(defun set-default-process-coding-system ()
199 (setq default-process-coding-system
200 (if default-enable-multibyte-characters
201 '(undecided-dos . undecided-dos)
202 '(raw-text-dos . raw-text-dos))))
203
204(add-hook 'before-init-hook 'set-default-process-coding-system)
205
cafef6ab 206(defvar register-name-alist
007c61fa 207 '((ax . 0) (bx . 1) (cx . 2) (dx . 3) (si . 4) (di . 5)
21f2acd3
RS
208 (cflag . 6) (flags . 7)
209 (al . (0 . 0)) (bl . (1 . 0)) (cl . (2 . 0)) (dl . (3 . 0))
210 (ah . (0 . 1)) (bh . (1 . 1)) (ch . (2 . 1)) (dh . (3 . 1))))
007c61fa
RS
211
212(defun make-register ()
213 (make-vector 8 0))
214
215(defun register-value (regs name)
21f2acd3 216 (let ((where (cdr (assoc name register-name-alist))))
007c61fa
RS
217 (cond ((consp where)
218 (let ((tem (aref regs (car where))))
219 (if (zerop (cdr where))
220 (% tem 256)
221 (/ tem 256))))
222 ((numberp where)
223 (aref regs where))
224 (t nil))))
225
226(defun set-register-value (regs name value)
227 (and (numberp value)
21f2acd3
RS
228 (>= value 0)
229 (let ((where (cdr (assoc name register-name-alist))))
007c61fa 230 (cond ((consp where)
21f2acd3
RS
231 (let ((tem (aref regs (car where)))
232 (value (logand value 255)))
233 (aset regs
234 (car where)
235 (if (zerop (cdr where))
236 (logior (logand tem 65280) value)
237 (logior (logand tem 255) (lsh value 8))))))
007c61fa 238 ((numberp where)
21f2acd3 239 (aset regs where (logand value 65535))))))
007c61fa
RS
240 regs)
241
242(defsubst intdos (regs)
243 (int86 33 regs))
244
70662974
RS
245;; Backward compatibility for obsolescent functions which
246;; set screen size.
247
248(defun mode25 ()
249 "Changes the number of screen rows to 25."
250 (interactive)
251 (set-frame-size (selected-frame) 80 25))
252
253(defun mode4350 ()
254 "Changes the number of rows to 43 or 50.
255Emacs always tries to set the screen height to 50 rows first.
256If this fails, it will try to set it to 43 rows, on the assumption
257that your video hardware might not support 50-line mode."
258 (interactive)
259 (set-frame-size (selected-frame) 80 50)
260 (if (eq (frame-height (selected-frame)) 50)
261 nil ; the original built-in function returned nil
262 (set-frame-size (selected-frame) 80 43)))
263
868c7abd
RS
264(provide 'dos-fns)
265
e8af40ee 266;;; dos-fns.el ends here