(org-publish-timestamp-directory): Run file names that begin with a period thru
[bpt/emacs.git] / lisp / dos-fns.el
CommitLineData
e8af40ee 1;;; dos-fns.el --- MS-Dos specific functions
007c61fa 2
e91081eb 3;; Copyright (C) 1991, 1993, 1995, 1996, 2001, 2002, 2003, 2004,
409cc4a3 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
007c61fa 5
0acdb863 6;; Maintainer: Morten Welinder <terra@diku.dk>
007c61fa
RS
7;; Keywords: internal
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
007c61fa 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
007c61fa
RS
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
007c61fa
RS
23
24;;; Commentary:
25
26;; Part of this code is taken from (or derived from) demacs.
27
28;;; Code:
29
6769db50 30(declare-function int86 "dosfns.c")
73e6adaa
DN
31(declare-function msdos-long-file-names "msdos.c")
32
44998f5b
RS
33;; This overrides a trivial definition in files.el.
34(defun convert-standard-filename (filename)
35 "Convert a standard file's name to something suitable for the current OS.
915b0bf0
JB
36This means to guarantee valid names and perhaps to canonicalize
37certain patterns.
38
39On Windows and DOS, replace invalid characters. On DOS, make
40sure to obey the 8.3 limitations. On Windows, turn Cygwin names
41into native names, and also turn slashes into backslashes if the
42shell requires it (see `w32-shell-dos-semantics')."
09def38b 43 (if (or (not (stringp filename))
9d47450f
EZ
44 ;; This catches the case where FILENAME is "x:" or "x:/" or
45 ;; "/", thus preventing infinite recursion.
46 (string-match "\\`\\([a-zA-Z]:\\)?[/\\]?\\'" filename))
9c777199 47 filename
9d47450f
EZ
48 (let ((flen (length filename)))
49 ;; If FILENAME has a trailing slash, remove it and recurse.
50 (if (memq (aref filename (1- flen)) '(?/ ?\\))
71296446 51 (concat (convert-standard-filename
9d47450f
EZ
52 (substring filename 0 (1- flen)))
53 "/")
54 (let* (;; ange-ftp gets in the way for names like "/foo:bar".
55 ;; We need to inhibit all magic file names, because
56 ;; remote file names should never be passed through
57 ;; this function, as they are not meant for the local
58 ;; filesystem!
59 (file-name-handler-alist nil)
60 (dir
61 ;; If FILENAME is "x:foo", file-name-directory returns
62 ;; "x:/bar/baz", substituting the current working
63 ;; directory on drive x:. We want to be left with "x:"
64 ;; instead.
65 (if (and (< 1 flen)
66 (eq (aref filename 1) ?:)
67 (null (string-match "[/\\]" filename)))
68 (substring filename 0 2)
69 (file-name-directory filename)))
70 (dlen-m-1 (1- (length dir)))
71 (string (copy-sequence (file-name-nondirectory filename)))
72 (lastchar (aref string (1- (length string))))
73 i firstdot)
74 (cond
75 ((msdos-long-file-names)
09def38b
EZ
76 ;; Replace characters that are invalid even on Windows.
77 (while (setq i (string-match "[?*:<>|\"\000-\037]" string))
9d47450f
EZ
78 (aset string i ?!)))
79 ((not (member string '("" "." "..")))
80 ;; Change a leading period to a leading underscore.
81 (if (= (aref string 0) ?.)
82 (aset string 0 ?_))
a007e4e3
EZ
83 ;; If the name is longer than 8 chars, and doesn't have a
84 ;; period, and we have a dash or underscore that isn't too
85 ;; close to the beginning, change that to a period. This
86 ;; is so we could salvage more characters of the original
87 ;; name by pushing them into the extension.
88 (if (and (not (string-match "\\." string))
89 (> (length string) 8)
90 ;; We don't gain anything if we put the period closer
91 ;; than 5 chars from the beginning (5 + 3 = 8).
92 (setq i (string-match "[-_]" string 5)))
93 (aset string i ?\.))
9d47450f
EZ
94 ;; Get rid of invalid characters.
95 (while (setq i (string-match
96 "[^-a-zA-Z0-9_.%~^$!#&{}@`'()\200-\376]"
97 string))
98 (aset string i ?_))
9d47450f 99 ;; If we don't have a period in the first 8 chars, insert one.
a007e4e3
EZ
100 ;; This enables to have 3 more characters from the original
101 ;; name in the extension.
9d47450f
EZ
102 (if (> (or (string-match "\\." string) (length string))
103 8)
104 (setq string
105 (concat (substring string 0 8)
106 "."
107 (substring string 8))))
108 (setq firstdot (or (string-match "\\." string)
109 (1- (length string))))
110 ;; Truncate to 3 chars after the first period.
111 (if (> (length string) (+ firstdot 4))
112 (setq string (substring string 0 (+ firstdot 4))))
113 ;; Change all periods except the first one into underscores.
a007e4e3 114 ;; (DOS doesn't allow more than one period.)
9d47450f
EZ
115 (while (string-match "\\." string (1+ firstdot))
116 (setq i (string-match "\\." string (1+ firstdot)))
117 (aset string i ?_))
a007e4e3
EZ
118 ;; If the last character of the original filename was `~' or `#',
119 ;; make sure the munged name ends with it also. This is so that
120 ;; backup and auto-save files retain their telltale form.
121 (if (memq lastchar '(?~ ?#))
9d47450f
EZ
122 (aset string (1- (length string)) lastchar))))
123 (concat (if (and (stringp dir)
124 (memq (aref dir dlen-m-1) '(?/ ?\\)))
125 (concat (convert-standard-filename
126 (substring dir 0 dlen-m-1))
127 "/")
128 (convert-standard-filename dir))
129 string))))))
44998f5b 130
51f32106 131(defun dos-8+3-filename (filename)
a9d36252
EZ
132 "Truncate FILENAME to DOS 8+3 limits."
133 (if (or (not (stringp filename))
134 (< (length filename) 5)) ; too short to give any trouble
135 filename
136 (let ((flen (length filename)))
137 ;; If FILENAME has a trailing slash, remove it and recurse.
138 (if (memq (aref filename (1- flen)) '(?/ ?\\))
51f32106 139 (concat (dos-8+3-filename (substring filename 0 (1- flen)))
a9d36252
EZ
140 "/")
141 (let* (;; ange-ftp gets in the way for names like "/foo:bar".
142 ;; We need to inhibit all magic file names, because
143 ;; remote file names should never be passed through
144 ;; this function, as they are not meant for the local
145 ;; filesystem!
146 (file-name-handler-alist nil)
147 (dir
148 ;; If FILENAME is "x:foo", file-name-directory returns
149 ;; "x:/bar/baz", substituting the current working
150 ;; directory on drive x:. We want to be left with "x:"
151 ;; instead.
152 (if (and (< 1 flen)
153 (eq (aref filename 1) ?:)
154 (null (string-match "[/\\]" filename)))
155 (substring filename 0 2)
156 (file-name-directory filename)))
157 (dlen-m-1 (1- (length dir)))
158 (string (copy-sequence (file-name-nondirectory filename)))
159 (strlen (length string))
160 (lastchar (aref string (1- strlen)))
161 i firstdot)
162 (setq firstdot (string-match "\\." string))
163 (cond
164 (firstdot
165 ;; Truncate the extension to 3 characters.
166 (if (> strlen (+ firstdot 4))
167 (setq string (substring string 0 (+ firstdot 4))))
168 ;; Truncate the basename to 8 characters.
169 (if (> firstdot 8)
170 (setq string (concat (substring string 0 8)
171 "."
172 (substring string (1+ firstdot))))))
173 ((> strlen 8)
174 ;; No dot; truncate file name to 8 characters.
175 (setq string (substring string 0 8))))
176 ;; If the last character of the original filename was `~',
177 ;; make sure the munged name ends with it also. This is so
178 ;; a backup file retains its final `~'.
179 (if (equal lastchar ?~)
180 (aset string (1- (length string)) lastchar))
181 (concat (if (and (stringp dir)
182 (memq (aref dir dlen-m-1) '(?/ ?\\)))
51f32106 183 (concat (dos-8+3-filename (substring dir 0 dlen-m-1))
a9d36252
EZ
184 "/")
185 ;; Recurse to truncate the leading directories.
51f32106 186 (dos-8+3-filename dir))
a9d36252
EZ
187 string))))))
188
feb65403
RS
189;; See dos-vars.el for defcustom.
190(defvar msdos-shells)
007c61fa 191
0c5f6aca 192;; Override settings chosen at startup.
224116b8
AI
193(defun set-default-process-coding-system ()
194 (setq default-process-coding-system
195 (if default-enable-multibyte-characters
196 '(undecided-dos . undecided-dos)
197 '(raw-text-dos . raw-text-dos))))
198
199(add-hook 'before-init-hook 'set-default-process-coding-system)
200
0c5f6aca
EZ
201;; File names defined in preloaded packages can be incorrect or
202;; invalid if long file names were available during dumping, but not
203;; at runtime, and the default file name begins with a period. Their
204;; defcustom's need to be reevaluated at startup. To update the list
205;; of defcustom's below, run the command "M-x apropos-value RET ~/\. RET".
206(defun dos-reevaluate-defcustoms ()
207 (custom-reevaluate-setting 'abbrev-file-name)
208 (custom-reevaluate-setting 'calc-settings-file)
209 (custom-reevaluate-setting 'trash-directory))
210
211(add-hook 'before-init-hook 'dos-reevaluate-defcustoms)
212
cafef6ab 213(defvar register-name-alist
007c61fa 214 '((ax . 0) (bx . 1) (cx . 2) (dx . 3) (si . 4) (di . 5)
21f2acd3
RS
215 (cflag . 6) (flags . 7)
216 (al . (0 . 0)) (bl . (1 . 0)) (cl . (2 . 0)) (dl . (3 . 0))
217 (ah . (0 . 1)) (bh . (1 . 1)) (ch . (2 . 1)) (dh . (3 . 1))))
007c61fa
RS
218
219(defun make-register ()
220 (make-vector 8 0))
221
222(defun register-value (regs name)
21f2acd3 223 (let ((where (cdr (assoc name register-name-alist))))
007c61fa
RS
224 (cond ((consp where)
225 (let ((tem (aref regs (car where))))
226 (if (zerop (cdr where))
227 (% tem 256)
228 (/ tem 256))))
229 ((numberp where)
230 (aref regs where))
231 (t nil))))
232
233(defun set-register-value (regs name value)
234 (and (numberp value)
21f2acd3
RS
235 (>= value 0)
236 (let ((where (cdr (assoc name register-name-alist))))
007c61fa 237 (cond ((consp where)
21f2acd3
RS
238 (let ((tem (aref regs (car where)))
239 (value (logand value 255)))
240 (aset regs
241 (car where)
242 (if (zerop (cdr where))
243 (logior (logand tem 65280) value)
244 (logior (logand tem 255) (lsh value 8))))))
007c61fa 245 ((numberp where)
21f2acd3 246 (aset regs where (logand value 65535))))))
007c61fa
RS
247 regs)
248
249(defsubst intdos (regs)
250 (int86 33 regs))
251
70662974
RS
252;; Backward compatibility for obsolescent functions which
253;; set screen size.
254
255(defun mode25 ()
256 "Changes the number of screen rows to 25."
257 (interactive)
258 (set-frame-size (selected-frame) 80 25))
259
260(defun mode4350 ()
261 "Changes the number of rows to 43 or 50.
262Emacs always tries to set the screen height to 50 rows first.
263If this fails, it will try to set it to 43 rows, on the assumption
264that your video hardware might not support 50-line mode."
265 (interactive)
266 (set-frame-size (selected-frame) 80 50)
267 (if (eq (frame-height (selected-frame)) 50)
268 nil ; the original built-in function returned nil
269 (set-frame-size (selected-frame) 80 43)))
270
868c7abd
RS
271(provide 'dos-fns)
272
cbee283d 273;; arch-tag: 00b03579-8ebb-4a02-8762-5c5a929774ad
e8af40ee 274;;; dos-fns.el ends here