1 ;;; dos-fns.el --- MS-Dos specific functions.
3 ;; Copyright (C) 1991, 1993 Free Software Foundation, Inc.
5 ;; Maintainer: Morten Welinder (terra@diku.dk)
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)
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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 ;; Part of this code is taken from (or derived from) demacs.
30 ;;; Add %t: into the mode line format just after the open-paren.
31 (let ((tail (member " %[(" mode-line-format
)))
32 (setcdr tail
(cons (purecopy "%t:")
35 ;; Use ";" instead of ":" as a path separator (from files.el).
36 (setq path-separator
";")
38 ;; Set the null device (for compile.el).
39 (setq grep-null-device
"NUL")
41 ;; Set the grep regexp to match entries with drive letters.
42 (setq grep-regexp-alist
43 '(("^\\(\\([a-zA-Z]:\\)?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 3)))
45 (defvar file-name-buffer-file-type-alist
47 ("[:/].*config.sys$" . nil
) ; config.sys text
48 ("\\.elc$" . t
) ; emacs stuff
49 ("\\.\\(obj\\|exe\\|com\\|lib\\|sys\\|chk\\|out\\|bin\\|ico\\|pif\\)$" . t
)
51 ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t
)
53 ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\)$" . t
)
56 ; Borland Pascal stuff
60 "*Alist for distinguishing text files from binary files.
61 Each element has the form (REGEXP . TYPE), where REGEXP is matched
62 against the file name, and TYPE is nil for text, t for binary.")
64 (defun find-buffer-file-type (filename)
65 (let ((alist file-name-buffer-file-type-alist
)
68 (let ((case-fold-search t
))
69 (setq filename
(file-name-sans-versions filename
))
70 (while (and (not found
) alist
)
71 (if (string-match (car (car alist
)) filename
)
72 (setq code
(cdr (car alist
))
74 (setq alist
(cdr alist
))))
76 (cond((memq code
'(nil t
)) code
)
77 ((and (symbolp code
) (fboundp code
))
78 (funcall code filename
)))
79 default-buffer-file-type
)))
81 (defun find-file-binary (filename)
82 "Visit file FILENAME and treat it as binary."
83 (interactive "FFind file binary: ")
84 (let ((file-name-buffer-file-type-alist '(("" . t
))))
85 (find-file filename
)))
87 (defun find-file-text (filename)
88 "Visit file FILENAME and treat it as a text file."
89 (interactive "FFind file text: ")
90 (let ((file-name-buffer-file-type-alist '(("" . nil
))))
91 (find-file filename
)))
93 (defun find-file-not-found-set-buffer-file-type ()
95 (set-buffer (current-buffer))
96 (setq buffer-file-type
(find-buffer-file-type (buffer-file-name))))
99 ;;; To set the default file type on new files.
100 (add-hook 'find-file-not-found-hooks
'find-file-not-found-set-buffer-file-type
)
102 (defvar msdos-shells
'("command.com" "4dos.com" "ndos.com")
103 "*List of shells that use `/c' instead of `-c' and a backslashed command.")
105 (defconst register-name-alist
106 '((ax .
0) (bx .
1) (cx .
2) (dx .
3) (si .
4) (di .
5)
107 (cflag .
6) (flags .
7)
108 (al .
(0 .
0)) (bl .
(1 .
0)) (cl .
(2 .
0)) (dl .
(3 .
0))
109 (ah .
(0 .
1)) (bh .
(1 .
1)) (ch .
(2 .
1)) (dh .
(3 .
1))))
111 (defun make-register ()
114 (defun register-value (regs name
)
115 (let ((where (cdr (assoc name register-name-alist
))))
117 (let ((tem (aref regs
(car where
))))
118 (if (zerop (cdr where
))
125 (defun set-register-value (regs name value
)
128 (let ((where (cdr (assoc name register-name-alist
))))
130 (let ((tem (aref regs
(car where
)))
131 (value (logand value
255)))
134 (if (zerop (cdr where
))
135 (logior (logand tem
65280) value
)
136 (logior (logand tem
255) (lsh value
8))))))
138 (aset regs where
(logand value
65535))))))
141 (defsubst intdos
(regs)
144 ;; Extra stub to functions in src/frame.c
145 ;; Emacs aborts during dump if the following don't have a doc string.
146 (defun window-frame (window)
147 "Return the frame that WINDOW resides on."
149 (defun raise-frame (frame)
150 "Raise FRAME to the top of the desktop."
152 (defun select-frame (frame &optional no-enter
)
153 "Select FRAME for input events."