Mercurial > emacs
annotate src/dosfns.c @ 42153:ca6dbe4635da
Implementing euc-tw encoding.
| author | Werner LEMBERG <wl@gnu.org> |
|---|---|
| date | Tue, 18 Dec 2001 17:52:17 +0000 |
| parents | ee8ae85f22ae |
| children | f92c4d87863a aac41b50c875 |
| rev | line source |
|---|---|
| 5503 | 1 /* MS-DOS specific Lisp utilities. Coded by Manabu Higashida, 1991. |
| 2 Major changes May-July 1993 Morten Welinder (only 10% original code left) | |
| 36513 | 3 Copyright (C) 1991, 1993, 1996, 1997, 1998, 2001 |
| 4 Free Software Foundation, Inc. | |
| 5503 | 5 |
| 6 This file is part of GNU Emacs. | |
| 7 | |
| 8 GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 it under the terms of the GNU General Public License as published by | |
| 10504 | 10 the Free Software Foundation; either version 2, or (at your option) |
| 5503 | 11 any later version. |
| 12 | |
| 13 GNU Emacs is distributed in the hope that it will be useful, | |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 GNU General Public License for more details. | |
| 17 | |
| 18 You should have received a copy of the GNU General Public License | |
| 19 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14070
diff
changeset
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14070
diff
changeset
|
21 Boston, MA 02111-1307, USA. */ |
| 5503 | 22 |
| 23 | |
| 5980 | 24 #include <config.h> |
| 5503 | 25 |
| 26 #ifdef MSDOS | |
| 27 /* The entire file is within this conditional */ | |
| 28 | |
| 29 #include <stdio.h> | |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
30 #include <string.h> |
| 5503 | 31 #include <dos.h> |
| 32 #include "lisp.h" | |
| 33 #include "buffer.h" | |
| 34 #include "termchar.h" | |
| 35 #include "termhooks.h" | |
| 36 #include "frame.h" | |
| 20034 | 37 #include "blockinput.h" |
| 38 #include "window.h" | |
| 5503 | 39 #include "dosfns.h" |
| 40 #include "msdos.h" | |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
41 #include "dispextern.h" |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
42 #include "charset.h" |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
43 #include "coding.h" |
| 20034 | 44 #include <dpmi.h> |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
45 #include <go32.h> |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
46 #include <dirent.h> |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
47 #include <sys/vfs.h> |
| 5503 | 48 |
| 20034 | 49 #ifndef __DJGPP_MINOR__ |
| 50 # define __tb _go32_info_block.linear_address_of_transfer_buffer; | |
| 51 #endif | |
| 52 | |
| 5503 | 53 DEFUN ("int86", Fint86, Sint86, 2, 2, 0, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
54 doc: /* Call specific MSDOS interrupt number INTERRUPT with REGISTERS. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
55 Return the updated REGISTER vector. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
56 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
57 INTERRUPT should be an integer in the range 0 to 255. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
58 REGISTERS should be a vector produced by `make-register' and |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
59 `set-register-value'. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
60 (interrupt, registers) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
61 Lisp_Object interrupt, registers; |
| 5503 | 62 { |
| 63 register int i; | |
| 64 int no; | |
| 65 union REGS inregs, outregs; | |
| 66 Lisp_Object val; | |
| 67 | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
68 CHECK_NUMBER (interrupt); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
69 no = (unsigned long) XINT (interrupt); |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
70 CHECK_VECTOR (registers); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
71 if (no < 0 || no > 0xff || XVECTOR (registers)-> size != 8) |
| 5503 | 72 return Qnil; |
| 73 for (i = 0; i < 8; i++) | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
74 CHECK_NUMBER (XVECTOR (registers)->contents[i]); |
| 5503 | 75 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
76 inregs.x.ax = (unsigned long) XFASTINT (XVECTOR (registers)->contents[0]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
77 inregs.x.bx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[1]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
78 inregs.x.cx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[2]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
79 inregs.x.dx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[3]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
80 inregs.x.si = (unsigned long) XFASTINT (XVECTOR (registers)->contents[4]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
81 inregs.x.di = (unsigned long) XFASTINT (XVECTOR (registers)->contents[5]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
82 inregs.x.cflag = (unsigned long) XFASTINT (XVECTOR (registers)->contents[6]); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
83 inregs.x.flags = (unsigned long) XFASTINT (XVECTOR (registers)->contents[7]); |
| 5503 | 84 |
| 85 int86 (no, &inregs, &outregs); | |
| 86 | |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
87 XVECTOR (registers)->contents[0] = make_number (outregs.x.ax); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
88 XVECTOR (registers)->contents[1] = make_number (outregs.x.bx); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
89 XVECTOR (registers)->contents[2] = make_number (outregs.x.cx); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
90 XVECTOR (registers)->contents[3] = make_number (outregs.x.dx); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
91 XVECTOR (registers)->contents[4] = make_number (outregs.x.si); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
92 XVECTOR (registers)->contents[5] = make_number (outregs.x.di); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
93 XVECTOR (registers)->contents[6] = make_number (outregs.x.cflag); |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
94 XVECTOR (registers)->contents[7] = make_number (outregs.x.flags); |
| 5503 | 95 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
96 return registers; |
| 5503 | 97 } |
| 98 | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
99 DEFUN ("msdos-memget", Fdos_memget, Sdos_memget, 2, 2, 0, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
100 doc: /* Read DOS memory at offset ADDRESS into VECTOR. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
101 Return the updated VECTOR. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
102 (address, vector) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
103 Lisp_Object address, vector; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
104 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
105 register int i; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
106 int offs, len; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
107 char *buf; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
108 Lisp_Object val; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
109 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
110 CHECK_NUMBER (address); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
111 offs = (unsigned long) XINT (address); |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
112 CHECK_VECTOR (vector); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
113 len = XVECTOR (vector)-> size; |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
114 if (len < 1 || len > 2048 || address < 0 || address > 0xfffff - len) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
115 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
116 buf = alloca (len); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
117 dosmemget (offs, len, buf); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
118 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
119 for (i = 0; i < len; i++) |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
120 XVECTOR (vector)->contents[i] = make_number (buf[i]); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
121 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
122 return vector; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
123 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
124 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
125 DEFUN ("msdos-memput", Fdos_memput, Sdos_memput, 2, 2, 0, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
126 doc: /* Write DOS memory at offset ADDRESS from VECTOR. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
127 (address, vector) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
128 Lisp_Object address, vector; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
129 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
130 register int i; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
131 int offs, len; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
132 char *buf; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
133 Lisp_Object val; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
134 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
135 CHECK_NUMBER (address); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
136 offs = (unsigned long) XINT (address); |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
137 CHECK_VECTOR (vector); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
138 len = XVECTOR (vector)-> size; |
|
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
139 if (len < 1 || len > 2048 || address < 0 || address > 0xfffff - len) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
140 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
141 buf = alloca (len); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
142 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
143 for (i = 0; i < len; i++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
144 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
145 CHECK_NUMBER (XVECTOR (vector)->contents[i]); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
146 buf[i] = (unsigned char) XFASTINT (XVECTOR (vector)->contents[i]) & 0xFF; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
147 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
148 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
149 dosmemput (buf, len, offs); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
150 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
151 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
152 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
153 DEFUN ("msdos-set-keyboard", Fmsdos_set_keyboard, Smsdos_set_keyboard, 1, 2, 0, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
154 doc: /* Set keyboard layout according to COUNTRY-CODE. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
155 If the optional argument ALLKEYS is non-nil, the keyboard is mapped for |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
156 all keys; otherwise it is only used when the ALT key is pressed. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
157 The current keyboard layout is available in dos-keyboard-code. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
158 (country_code, allkeys) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
159 Lisp_Object country_code; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
160 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
161 CHECK_NUMBER (country_code); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
162 if (!dos_set_keyboard (XINT (country_code), !NILP (allkeys))) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
163 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
164 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
165 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
166 |
| 9572 | 167 #ifndef HAVE_X_WINDOWS |
| 168 /* Later we might want to control the mouse interface with this function, | |
| 169 e.g., with respect to non-80 column screen modes. */ | |
| 170 | |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
171 DEFUN ("msdos-mouse-p", Fmsdos_mouse_p, Smsdos_mouse_p, 0, 0, 0, |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
172 doc: /* Report whether a mouse is present. */) |
| 9572 | 173 () |
| 174 { | |
| 175 if (have_mouse) | |
| 176 return Qt; | |
| 177 else | |
| 178 return Qnil; | |
| 179 } | |
| 180 #endif | |
| 181 | |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
182 |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
183 DEFUN ("msdos-mouse-init", Fmsdos_mouse_init, Smsdos_mouse_init, 0, 0, "", |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
184 doc: /* Initialize and enable mouse if available. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
185 () |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
186 { |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
187 if (have_mouse) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
188 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
189 have_mouse = 1; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
190 mouse_init (); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
191 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
192 } |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
193 return Qnil; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
194 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
195 |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
196 DEFUN ("msdos-mouse-enable", Fmsdos_mouse_enable, Smsdos_mouse_enable, 0, 0, "", |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
197 doc: /* Enable mouse if available. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
198 () |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
199 { |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
200 if (have_mouse) |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
201 { |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
202 have_mouse = 1; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
203 mouse_on (); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
204 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
205 return have_mouse ? Qt : Qnil; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
206 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
207 |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
208 DEFUN ("msdos-mouse-disable", Fmsdos_mouse_disable, Smsdos_mouse_disable, 0, 0, "", |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
209 doc: /* Disable mouse if available. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
210 () |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
211 { |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
212 mouse_off (); |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
213 if (have_mouse) have_mouse = -1; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
214 return Qnil; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
215 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
216 |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
217 DEFUN ("insert-startup-screen", Finsert_startup_screen, Sinsert_startup_screen, 0, 0, "", |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
218 doc: /* Insert copy of screen contents prior to starting emacs. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
219 Return nil if startup screen is not available. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
220 () |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
221 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
222 char *s; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
223 int rows, cols; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
224 int i, j; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
225 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
226 if (!dos_get_saved_screen (&s, &rows, &cols)) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
227 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
228 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
229 for (i = 0; i < rows; i++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
230 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
231 for (j = 0; j < cols; j++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
232 { |
|
19288
bdc4b7818976
(Finsert_startup_screen): Call `insert_char' with a single argument.
Richard M. Stallman <rms@gnu.org>
parents:
16335
diff
changeset
|
233 insert_char (*s); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
234 s += 2; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
235 } |
|
19288
bdc4b7818976
(Finsert_startup_screen): Call `insert_char' with a single argument.
Richard M. Stallman <rms@gnu.org>
parents:
16335
diff
changeset
|
236 insert_char ('\n'); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
237 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
238 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
239 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
240 } |
| 9572 | 241 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
242 /* country info */ |
| 5503 | 243 int dos_country_code; |
| 244 int dos_codepage; | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
245 int dos_timezone_offset; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
246 int dos_decimal_point; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
247 int dos_keyboard_layout; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
248 unsigned char dos_country_info[DOS_COUNTRY_INFO]; |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
249 static unsigned char usa_country_info[DOS_COUNTRY_INFO] = { |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
250 0, 0, /* date format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
251 '$', 0, 0, 0, 0, /* currency string */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
252 ',', 0, /* thousands separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
253 '.', 0, /* decimal separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
254 '/', 0, /* date separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
255 ':', 0, /* time separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
256 0, /* currency format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
257 2, /* digits after decimal in currency */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
258 0, /* time format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
259 0, 0, 0, 0, /* address of case map routine, GPF if used */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
260 ' ', 0, /* data-list separator (?) */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
261 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
262 }; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
263 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
264 int dos_hyper_key; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
265 int dos_super_key; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
266 int dos_keypad_mode; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
267 |
| 5503 | 268 Lisp_Object Vdos_version; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
269 Lisp_Object Vdos_display_scancodes; |
| 20034 | 270 |
| 271 #ifndef HAVE_X_WINDOWS | |
| 272 static unsigned dos_windows_version; | |
| 273 Lisp_Object Vdos_windows_version; | |
| 274 | |
| 275 char parent_vm_title[50]; /* Ralf Brown says 30 is enough */ | |
| 276 int w95_set_virtual_machine_title (const char *); | |
| 277 | |
| 278 void | |
| 279 restore_parent_vm_title (void) | |
| 280 { | |
| 281 if (NILP (Vdos_windows_version)) | |
| 282 return; | |
| 283 if ((dos_windows_version & 0xff) >= 4 && parent_vm_title[0]) | |
| 284 w95_set_virtual_machine_title (parent_vm_title); | |
| 285 delay (50); | |
| 286 } | |
| 287 #endif /* !HAVE_X_WINDOWS */ | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
288 |
| 5503 | 289 void |
| 290 init_dosfns () | |
| 291 { | |
| 292 union REGS regs; | |
| 293 _go32_dpmi_registers dpmiregs; | |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
294 unsigned long xbuf = _go32_info_block.linear_address_of_transfer_buffer; |
| 5503 | 295 |
| 9572 | 296 #ifndef SYSTEM_MALLOC |
| 5503 | 297 get_lim_data (); /* why the hell isn't this called elsewhere? */ |
| 9572 | 298 #endif |
| 5503 | 299 |
| 300 regs.x.ax = 0x3000; | |
| 301 intdos (®s, ®s); | |
| 302 Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah)); | |
| 303 | |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
304 /* Obtain the country code via DPMI, use DJGPP transfer buffer. */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
305 dpmiregs.x.ax = 0x3800; |
|
21430
b6b154ad6e22
(init_dosfns): Fix bug in passing segment address of the transfer buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
20034
diff
changeset
|
306 dpmiregs.x.ds = xbuf >> 4; |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
307 dpmiregs.x.dx = 0; |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
308 dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0; |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
309 _go32_dpmi_simulate_int (0x21, &dpmiregs); |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
310 if (dpmiregs.x.flags & 1) |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
311 { |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
312 dos_country_code = 1; /* assume USA if 213800 failed */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
313 memcpy (dos_country_info, usa_country_info, DOS_COUNTRY_INFO); |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
314 } |
| 5503 | 315 else |
| 316 { | |
| 317 dos_country_code = dpmiregs.x.bx; | |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
318 dosmemget (xbuf, DOS_COUNTRY_INFO, dos_country_info); |
| 5503 | 319 } |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
320 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
321 dos_set_keyboard (dos_country_code, 0); |
| 5503 | 322 |
| 323 regs.x.ax = 0x6601; | |
| 324 intdos (®s, ®s); | |
| 325 if (regs.x.cflag) | |
| 326 /* Estimate code page from country code */ | |
| 327 switch (dos_country_code) | |
| 328 { | |
| 329 case 45: /* Denmark */ | |
| 330 case 47: /* Norway */ | |
| 331 dos_codepage = 865; | |
| 332 break; | |
| 333 default: | |
| 334 /* US */ | |
| 335 dos_codepage = 437; | |
| 336 } | |
| 337 else | |
| 338 dos_codepage = regs.x.bx & 0xffff; | |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
339 |
| 20034 | 340 #ifndef HAVE_X_WINDOWS |
| 341 parent_vm_title[0] = '\0'; | |
| 342 | |
| 343 /* If we are running from DOS box on MS-Windows, get Windows version. */ | |
| 344 dpmiregs.x.ax = 0x1600; /* enhanced mode installation check */ | |
| 345 dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0; | |
| 346 _go32_dpmi_simulate_int (0x2f, &dpmiregs); | |
| 347 /* We only support Windows-specific features when we run on Windows 9X | |
| 348 or on Windows 3.X/enhanced mode. | |
| 349 | |
| 350 Int 2Fh/AX=1600h returns: | |
| 351 | |
| 352 AL = 00: no Windows at all; | |
| 353 AL = 01: Windows/386 2.x; | |
| 354 AL = 80h: Windows 3.x in mode other than enhanced; | |
| 355 AL = FFh: Windows/386 2.x | |
| 356 | |
| 357 We also check AH > 0 (Windows 3.1 or later), in case AL tricks us. */ | |
| 358 if (dpmiregs.h.al > 2 && dpmiregs.h.al != 0x80 && dpmiregs.h.al != 0xff | |
| 359 && (dpmiregs.h.al > 3 || dpmiregs.h.ah > 0)) | |
| 360 { | |
| 361 dos_windows_version = dpmiregs.x.ax; | |
| 362 Vdos_windows_version = | |
| 363 Fcons (make_number (dpmiregs.h.al), make_number (dpmiregs.h.ah)); | |
| 364 | |
| 365 /* Save the current title of this virtual machine, so we can restore | |
| 366 it before exiting. Otherwise, Windows 95 will continue to use | |
| 367 the title we set even after we are history, stupido... */ | |
| 368 if (dpmiregs.h.al >= 4) | |
| 369 { | |
| 370 dpmiregs.x.ax = 0x168e; | |
| 371 dpmiregs.x.dx = 3; /* get VM title */ | |
| 372 dpmiregs.x.cx = sizeof(parent_vm_title) - 1; | |
| 373 dpmiregs.x.es = __tb >> 4; | |
| 374 dpmiregs.x.di = __tb & 15; | |
| 375 dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0; | |
| 376 _go32_dpmi_simulate_int (0x2f, &dpmiregs); | |
| 377 if (dpmiregs.x.ax == 1) | |
| 378 dosmemget (__tb, sizeof(parent_vm_title), parent_vm_title); | |
| 379 } | |
| 380 } | |
| 381 else | |
| 382 { | |
| 383 dos_windows_version = 0; | |
| 384 Vdos_windows_version = Qnil; | |
| 385 } | |
| 386 #endif /* !HAVE_X_WINDOWS */ | |
| 387 | |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
388 #if __DJGPP__ >= 2 |
|
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
389 |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
390 /* Without this, we never see hidden files. |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
391 Don't OR it with the previous value, so the value recorded at dump |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
392 time, possibly with `preserve-case' flags set, won't get through. */ |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
393 __opendir_flags = __OPENDIR_FIND_HIDDEN; |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
394 |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
395 #if __DJGPP_MINOR__ == 0 |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
396 /* Under LFN, preserve the case of files as recorded in the directory |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
397 (in DJGPP 2.01 and later this is automagically done by the library). */ |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
398 if (!NILP (Fmsdos_long_file_names ())) |
|
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
399 __opendir_flags |= __OPENDIR_PRESERVE_CASE; |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
400 #endif /* __DJGPP_MINOR__ == 0 */ |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
401 #endif /* __DJGPP__ >= 2 */ |
| 5503 | 402 } |
| 403 | |
| 20034 | 404 #ifndef HAVE_X_WINDOWS |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
405 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
406 /* Emulation of some X window features from xfns.c and xfaces.c. */ |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
407 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
408 /* Standard VGA colors, in the order of their standard numbering |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
409 in the default VGA palette. */ |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
410 static char *vga_colors[16] = { |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
411 "black", "blue", "green", "cyan", "red", "magenta", "brown", |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
412 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan", |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
413 "lightred", "lightmagenta", "yellow", "white" |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
414 }; |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
415 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
416 /* Given a color name, return its index, or -1 if not found. Note |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
417 that this only performs case-insensitive comparison against the |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
418 standard names. For anything more sophisticated, like matching |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
419 "gray" with "grey" or translating X color names into their MSDOS |
|
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25212
diff
changeset
|
420 equivalents, call the Lisp function Qtty_color_desc (defined |
|
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25212
diff
changeset
|
421 on lisp/term/tty-colors.el). */ |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
422 int |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
423 msdos_stdcolor_idx (const char *name) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
424 { |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
425 int i; |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
426 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
427 for (i = 0; i < sizeof (vga_colors) / sizeof (vga_colors[0]); i++) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
428 if (strcasecmp (name, vga_colors[i]) == 0) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
429 return i; |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
430 |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26729
diff
changeset
|
431 return |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
432 strcmp (name, unspecified_fg) == 0 ? FACE_TTY_DEFAULT_FG_COLOR |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
433 : strcmp (name, unspecified_bg) == 0 ? FACE_TTY_DEFAULT_BG_COLOR |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26729
diff
changeset
|
434 : FACE_TTY_DEFAULT_COLOR; |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
435 } |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
436 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
437 /* Given a color index, return its standard name. */ |
|
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25212
diff
changeset
|
438 Lisp_Object |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
439 msdos_stdcolor_name (int idx) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
440 { |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
441 extern Lisp_Object Qunspecified; |
|
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25212
diff
changeset
|
442 |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
443 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
444 return build_string (unspecified_fg); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
445 else if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
446 return build_string (unspecified_bg); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
447 else if (idx >= 0 && idx < sizeof (vga_colors) / sizeof (vga_colors[0])) |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
448 return build_string (vga_colors[idx]); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
449 else |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
450 return Qunspecified; /* meaning the default */ |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
451 } |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
452 |
| 20034 | 453 /* Support for features that are available when we run in a DOS box |
| 454 on MS-Windows. */ | |
| 455 int | |
| 456 ms_windows_version (void) | |
| 457 { | |
| 458 return dos_windows_version; | |
| 459 } | |
| 460 | |
| 461 /* Set the title of the current virtual machine, to appear on | |
| 462 the caption bar of that machine's window. */ | |
| 463 | |
| 464 int | |
| 465 w95_set_virtual_machine_title (const char *title_string) | |
| 466 { | |
| 467 /* Only Windows 9X (version 4 and higher) support this function. */ | |
| 468 if (!NILP (Vdos_windows_version) | |
| 469 && (dos_windows_version & 0xff) >= 4) | |
| 470 { | |
| 471 _go32_dpmi_registers regs; | |
| 472 dosmemput (title_string, strlen (title_string) + 1, __tb); | |
| 473 regs.x.ax = 0x168e; | |
| 474 regs.x.dx = 1; | |
| 475 regs.x.es = __tb >> 4; | |
| 476 regs.x.di = __tb & 15; | |
| 477 regs.x.sp = regs.x.ss = regs.x.flags = 0; | |
| 478 _go32_dpmi_simulate_int (0x2f, ®s); | |
| 479 return regs.x.ax == 1; | |
| 480 } | |
| 481 return 0; | |
| 482 } | |
| 483 | |
| 484 /* Change the title of frame F to NAME. | |
| 485 If NAME is nil, use the frame name as the title. | |
| 486 | |
| 487 If Emacs is not run from a DOS box on Windows 9X, this only | |
| 488 sets the name in the frame struct, but has no other effects. */ | |
| 489 | |
| 490 void | |
| 491 x_set_title (f, name) | |
| 492 struct frame *f; | |
| 493 Lisp_Object name; | |
| 494 { | |
| 495 /* Don't change the title if it's already NAME. */ | |
| 496 if (EQ (name, f->title)) | |
| 497 return; | |
| 498 | |
| 499 update_mode_lines = 1; | |
| 500 | |
| 501 f->title = name; | |
| 502 | |
| 503 if (NILP (name)) | |
| 504 name = f->name; | |
| 505 | |
| 506 if (FRAME_MSDOS_P (f)) | |
| 507 { | |
| 508 BLOCK_INPUT; | |
| 509 w95_set_virtual_machine_title (XSTRING (name)->data); | |
| 510 UNBLOCK_INPUT; | |
| 511 } | |
| 512 } | |
| 513 #endif /* !HAVE_X_WINDOWS */ | |
| 514 | |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
515 DEFUN ("file-system-info", Ffile_system_info, Sfile_system_info, 1, 1, 0, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
516 doc: /* Return storage information about the file system FILENAME is on. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
517 Value is a list of floats (TOTAL FREE AVAIL), where TOTAL is the total |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
518 storage of the file system, FREE is the free storage, and AVAIL is the |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
519 storage available to a non-superuser. All 3 numbers are in bytes. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
520 If the underlying system call fails, value is nil. */) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
521 (filename) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
522 Lisp_Object filename; |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
523 { |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
524 struct statfs stfs; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
525 Lisp_Object encoded, value; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
526 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
527 CHECK_STRING (filename); |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
528 filename = Fexpand_file_name (filename, Qnil); |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
529 encoded = ENCODE_FILE (filename); |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
530 |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
531 if (statfs (XSTRING (encoded)->data, &stfs)) |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
532 value = Qnil; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
533 else |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
534 value = list3 (make_float ((double) stfs.f_bsize * stfs.f_blocks), |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
535 make_float ((double) stfs.f_bsize * stfs.f_bfree), |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
536 make_float ((double) stfs.f_bsize * stfs.f_bavail)); |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
537 |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
538 return value; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
539 } |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
540 |
| 20034 | 541 void |
| 542 dos_cleanup (void) | |
| 543 { | |
| 544 #ifndef HAVE_X_WINDOWS | |
| 545 restore_parent_vm_title (); | |
| 546 #endif | |
|
23814
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
547 /* Make sure the termscript file is committed, in case we are |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
548 crashing and some vital info was written there. */ |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
549 if (termscript) |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
550 { |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
551 fflush (termscript); |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
552 fsync (fileno (termscript)); |
|
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
553 } |
| 20034 | 554 } |
| 555 | |
| 5503 | 556 /* |
| 557 * Define everything | |
| 558 */ | |
| 559 syms_of_dosfns () | |
| 560 { | |
| 561 defsubr (&Sint86); | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
562 defsubr (&Sdos_memget); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
563 defsubr (&Sdos_memput); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
564 defsubr (&Smsdos_mouse_init); |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
565 defsubr (&Smsdos_mouse_enable); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
566 defsubr (&Smsdos_set_keyboard); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
567 defsubr (&Sinsert_startup_screen); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
568 defsubr (&Smsdos_mouse_disable); |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
569 defsubr (&Sfile_system_info); |
| 9572 | 570 #ifndef HAVE_X_WINDOWS |
| 571 defsubr (&Smsdos_mouse_p); | |
| 572 #endif | |
| 5503 | 573 |
| 574 DEFVAR_INT ("dos-country-code", &dos_country_code, | |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
575 doc: /* The country code returned by Dos when Emacs was started. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
576 Usually this is the international telephone prefix. */); |
| 5503 | 577 |
| 578 DEFVAR_INT ("dos-codepage", &dos_codepage, | |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
579 doc: /* The codepage active when Emacs was started. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
580 The following are known: |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
581 437 United States |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
582 850 Multilingual (Latin I) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
583 852 Slavic (Latin II) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
584 857 Turkish |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
585 860 Portugal |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
586 861 Iceland |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
587 863 Canada (French) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
588 865 Norway/Denmark */); |
| 5503 | 589 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
590 DEFVAR_INT ("dos-timezone-offset", &dos_timezone_offset, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
591 doc: /* The current timezone offset to UTC in minutes. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
592 Implicitly modified when the TZ variable is changed. */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
593 |
| 5503 | 594 DEFVAR_LISP ("dos-version", &Vdos_version, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
595 doc: /* The (MAJOR . MINOR) Dos version (subject to modification with setver). */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
596 |
| 20034 | 597 #ifndef HAVE_X_WINDOWS |
| 598 DEFVAR_LISP ("dos-windows-version", &Vdos_windows_version, | |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
599 doc: /* The (MAJOR . MINOR) Windows version for DOS session on MS-Windows. */); |
| 20034 | 600 #endif |
| 601 | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
602 DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
603 doc: /* *Controls whether DOS raw keyboard events are displayed as you type. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
604 When non-nil, the keyboard scan-codes are displayed at the bottom right |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
605 corner of the display (typically at the end of the mode line). |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
606 The output format is: scan code:char code*modifiers. */); |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
607 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
608 Vdos_display_scancodes = Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
609 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
610 DEFVAR_INT ("dos-hyper-key", &dos_hyper_key, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
611 doc: /* *If set to 1, use right ALT key as hyper key. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
612 If set to 2, use right CTRL key as hyper key. */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
613 dos_hyper_key = 0; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
614 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
615 DEFVAR_INT ("dos-super-key", &dos_super_key, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
616 doc: /* *If set to 1, use right ALT key as super key. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
617 If set to 2, use right CTRL key as super key. */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
618 dos_super_key = 0; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
619 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
620 DEFVAR_INT ("dos-keypad-mode", &dos_keypad_mode, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
621 doc: /* *Controls what key code is returned by a key in the numeric keypad. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
622 The `numlock ON' action is only taken if no modifier keys are pressed. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
623 The value is an integer constructed by adding the following bits together: |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
624 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
625 0x00 Digit key returns digit (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
626 0x01 Digit key returns kp-digit (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
627 0x02 Digit key returns M-digit (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
628 0x03 Digit key returns edit key (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
629 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
630 0x00 Grey key returns char (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
631 0x04 Grey key returns kp-key (if numlock ON) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
632 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
633 0x00 Digit key returns digit (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
634 0x10 Digit key returns kp-digit (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
635 0x20 Digit key returns M-digit (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
636 0x30 Digit key returns edit key (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
637 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
638 0x00 Grey key returns char (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
639 0x40 Grey key returns kp-key (if numlock OFF) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
640 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
641 0x200 ALT-0..ALT-9 in top-row produces shifted codes. */); |
|
13612
342d919f52b2
(syms_of_dosfns): Use 0x75 for dos_keypad_mode.
Richard M. Stallman <rms@gnu.org>
parents:
13180
diff
changeset
|
642 dos_keypad_mode = 0x75; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
643 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
644 DEFVAR_INT ("dos-keyboard-layout", &dos_keyboard_layout, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
645 doc: /* Contains the country code for the current keyboard layout. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
646 Use msdos-set-keyboard to select another keyboard layout. */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
647 dos_keyboard_layout = 1; /* US */ |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
648 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
649 DEFVAR_INT ("dos-decimal-point", &dos_decimal_point, |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
650 doc: /* The character to produce when kp-decimal key is pressed. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
651 If non-zero, this variable contains the character to be returned when the |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
652 decimal point key in the numeric keypad is pressed when Num Lock is on. |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
653 If zero, the decimal point key returns the country code specific value. */); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
654 dos_decimal_point = 0; |
| 5503 | 655 } |
| 656 #endif /* MSDOS */ |
