Mercurial > emacs
annotate lisp/dos-fns.el @ 14186:ee40177f6c68
Update FSF's address in the preamble.
author | Erik Naggum <erik@naggum.no> |
---|---|
date | Mon, 15 Jan 1996 09:18:04 +0000 |
parents | 83f275dcd93a |
children | 557b3d11a381 |
rev | line source |
---|---|
5443 | 1 ;;; dos-fns.el --- MS-Dos specific functions. |
2 | |
14162
15ea2a83edae
(convert-standard-filename): Make sure firstdot is not nil.
Richard M. Stallman <rms@gnu.org>
parents:
13913
diff
changeset
|
3 ;; Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc. |
5443 | 4 |
5 ;; Maintainer: Morten Welinder (terra@diku.dk) | |
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 | |
14169 | 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. | |
5443 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Part of this code is taken from (or derived from) demacs. | |
28 | |
29 ;;; Code: | |
30 | |
13472
c51fb9c4c780
(mode-line-format): Modify it, don't override it entirely.
Richard M. Stallman <rms@gnu.org>
parents:
12253
diff
changeset
|
31 ;;; Add %t: into the mode line format just after the open-paren. |
13487 | 32 (let ((tail (member " %[(" mode-line-format))) |
13472
c51fb9c4c780
(mode-line-format): Modify it, don't override it entirely.
Richard M. Stallman <rms@gnu.org>
parents:
12253
diff
changeset
|
33 (setcdr tail (cons (purecopy "%t:") |
c51fb9c4c780
(mode-line-format): Modify it, don't override it entirely.
Richard M. Stallman <rms@gnu.org>
parents:
12253
diff
changeset
|
34 (cdr tail)))) |
5443 | 35 |
12253
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
36 ;; Use ";" instead of ":" as a path separator (from files.el). |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
37 (setq path-separator ";") |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
38 |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
39 ;; Set the null device (for compile.el). |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
40 (setq grep-null-device "NUL") |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
41 |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
42 ;; Set the grep regexp to match entries with drive letters. |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
43 (setq grep-regexp-alist |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
44 '(("^\\(\\([a-zA-Z]:\\)?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 3))) |
5ff133dbb12f
(path-separator, grep-null-device, grep-regexp-alist):
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
45 |
13913
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
46 ;; This overrides a trivial definition in files.el. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
47 (defun convert-standard-filename (filename) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
48 "Convert a standard file's name to something suitable for the current OS. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
49 This function's standard definition is trivial; it just returns the argument. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
50 However, on some systems, the function is redefined |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
51 with a definition that really does change some file names." |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
52 (let ((dir (file-name-directory filename)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
53 (string (copy-sequence (file-name-nondirectory filename))) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
54 i firstdot) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
55 ;; Change a leading period to a leading underscore. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
56 (if (= (aref string 0) ?.) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
57 (aset string 0 ?_)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
58 ;; Get rid of invalid characters. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
59 (while (setq i (string-match "[^a-zA-Z0-9_.%~]" string)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
60 (aset string i ?_)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
61 ;; If we don't have a period, |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
62 ;; and we have a dash or underscore that isn't the first char, |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
63 ;; change that to a period. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
64 (if (and (not (string-match "\\." string)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
65 (setq i (string-match "[-_]" string 1))) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
66 (aset string i ?\.)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
67 ;; If we don't have a period in the first 8 chars, insert one. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
68 (if (> (or (string-match "\\." string) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
69 (length string)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
70 8) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
71 (setq string |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
72 (concat (substring string 0 8) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
73 "." |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
74 (substring string 8)))) |
14162
15ea2a83edae
(convert-standard-filename): Make sure firstdot is not nil.
Richard M. Stallman <rms@gnu.org>
parents:
13913
diff
changeset
|
75 (setq firstdot (or (string-match "\\." string) (1- (length string)))) |
13913
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
76 ;; Truncate to 3 chars after the first period. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
77 (if (> (length string) (+ firstdot 4)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
78 (setq string (substring string 0 (+ firstdot 4)))) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
79 ;; Change all periods except the first one into underscores. |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
80 (while (string-match "\\." string (1+ firstdot)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
81 (setq i (string-match "\\." string (1+ firstdot))) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
82 (aset string i ?_)) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
83 (concat dir string))) |
4e4201bcea5d
(convert-standard-filename): New alternate definition.
Richard M. Stallman <rms@gnu.org>
parents:
13487
diff
changeset
|
84 |
5443 | 85 (defvar file-name-buffer-file-type-alist |
86 '( | |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
87 ("[:/].*config.sys$" . nil) ; config.sys text |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
88 ("\\.elc$" . t) ; emacs stuff |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
89 ("\\.\\(obj\\|exe\\|com\\|lib\\|sys\\|chk\\|out\\|bin\\|ico\\|pif\\)$" . t) |
5443 | 90 ; MS-Dos stuff |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
91 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t) |
5443 | 92 ; Packers |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
93 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\)$" . t) |
5443 | 94 ; Unix stuff |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
95 ("\\.tp[ulpw]$" . t) |
5443 | 96 ; Borland Pascal stuff |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
97 ("[:/]tags$" . t) |
5443 | 98 ; Emacs TAGS file |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
99 ) |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
100 "*Alist for distinguishing text files from binary files. |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
101 Each element has the form (REGEXP . TYPE), where REGEXP is matched |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
102 against the file name, and TYPE is nil for text, t for binary.") |
5443 | 103 |
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)))) | |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
115 (if found |
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
116 (cond((memq code '(nil t)) code) |
5443 | 117 ((and (symbolp code) (fboundp code)) |
118 (funcall code filename))) | |
119 default-buffer-file-type))) | |
120 | |
121 (defun find-file-binary (filename) | |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
122 "Visit file FILENAME and treat it as binary." |
5443 | 123 (interactive "FFind file binary: ") |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
124 (let ((file-name-buffer-file-type-alist '(("" . t)))) |
5443 | 125 (find-file filename))) |
126 | |
127 (defun find-file-text (filename) | |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
128 "Visit file FILENAME and treat it as a text file." |
5443 | 129 (interactive "FFind file text: ") |
7087
57553b30baed
(mode-line-format): Put `mode-line-process' earlier.
Richard M. Stallman <rms@gnu.org>
parents:
5469
diff
changeset
|
130 (let ((file-name-buffer-file-type-alist '(("" . nil)))) |
5443 | 131 (find-file filename))) |
132 | |
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) | |
138 | |
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) | |
141 | |
142 (defvar msdos-shells '("command.com" "4dos.com" "ndos.com") | |
143 "*List of shells that use `/c' instead of `-c' and a backslashed command.") | |
144 | |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
145 (defconst register-name-alist |
5443 | 146 '((ax . 0) (bx . 1) (cx . 2) (dx . 3) (si . 4) (di . 5) |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
147 (cflag . 6) (flags . 7) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
148 (al . (0 . 0)) (bl . (1 . 0)) (cl . (2 . 0)) (dl . (3 . 0)) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
149 (ah . (0 . 1)) (bh . (1 . 1)) (ch . (2 . 1)) (dh . (3 . 1)))) |
5443 | 150 |
151 (defun make-register () | |
152 (make-vector 8 0)) | |
153 | |
154 (defun register-value (regs name) | |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
155 (let ((where (cdr (assoc name register-name-alist)))) |
5443 | 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)))) | |
164 | |
165 (defun set-register-value (regs name value) | |
166 (and (numberp value) | |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
167 (>= value 0) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
168 (let ((where (cdr (assoc name register-name-alist)))) |
5443 | 169 (cond ((consp where) |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
170 (let ((tem (aref regs (car where))) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
171 (value (logand value 255))) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
172 (aset regs |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
173 (car where) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
174 (if (zerop (cdr where)) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
175 (logior (logand tem 65280) value) |
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
176 (logior (logand tem 255) (lsh value 8)))))) |
5443 | 177 ((numberp where) |
7256
0f06f87f3c3b
(set-register-value): Setting the high byte of a
Richard M. Stallman <rms@gnu.org>
parents:
7087
diff
changeset
|
178 (aset regs where (logand value 65535)))))) |
5443 | 179 regs) |
180 | |
181 (defsubst intdos (regs) | |
182 (int86 33 regs)) | |
183 | |
9572 | 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)) |