Mercurial > emacs
annotate src/dosfns.c @ 109581:06384b3caebf
Add ability to put Gtk+ tool bar on the left/right/bottom or top. Default top.
* lisp/menu-bar.el (menu-bar-showhide-tool-bar-menu-customize-enable-left)
(menu-bar-showhide-tool-bar-menu-customize-disable)
(menu-bar-showhide-tool-bar-menu-customize-enable-right)
(menu-bar-showhide-tool-bar-menu-customize-enable-top)
(menu-bar-showhide-tool-bar-menu-customize-enable-bottom): New functions
(menu-bar-showhide-tool-bar-menu): If tool bar is moveable,
make a menu for Options => toolbar that can move it.
* src/frame.c (Qtool_bar_position): New variable.
(make_frame): Set tool_bar_position to Qtop.
(frame_parms): Add tool-bar-position.
(x_report_frame_params): Store tool_bar_position.
(x_set_fringe_width): Reset wm size hint after fringe changes.
* src/frame.h (struct frame): Add tool_bar_position.
(Qbottom): Declare.
* src/gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
(xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
(xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
(xg_create_frame_widgets): Create a hobox for placing widgets
vertically. Use gtk_box_pack_start.
(xg_height_or_width_changed): Renamed from xg_height_changed.
(x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
(xg_update_frame_menubar, free_frame_menubar): Change to
xg_height_or_width_changed.
(xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
size correctly. Remove hardcoded 4, instead use handlebox size -
toolbar size.
(xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
size correctly. Use handlebox size + toolbar size as additional
size.
(xg_pack_tool_bar): POS is a new parameter.
Set orientation of tool bar based on pos.
Only make handlebox_widget if NULL.
Check if tool bar goes to vbox or hbox depending on pos.
(xg_update_tool_bar_sizes): New function.
(update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
height, call xg_update_tool_bar_sizes instead.
(free_frame_tool_bar): Remove from hbox or vbox depending on
toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
(xg_change_toolbar_position): New function.
* src/gtkutil.h (xg_change_toolbar_position): Declare.
* src/window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
and FRAME_TOOLBAR_LEFT_WIDTH.
* src/xfns.c (x_set_tool_bar_position): New function.
(xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
(x_frame_parm_handlers): Add x_set_tool_bar_position.
(syms_of_xfns): if USE_GTK, provide move-toolbar.
* src/xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
* src/xterm.h (struct x_output): Add toolbar_top_height,
toolbar_bottom_height, toolbar_left_width, toolbar_right_width. Remove
toolbar_height.
if USE_GTK: Add hbox_widget and toolbar_in_hbox.
(FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
(FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
(FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
| author | Jan D. <jan.h.d@swipnet.se> |
|---|---|
| date | Thu, 29 Jul 2010 18:49:59 +0200 |
| parents | 8cfee7d2955f |
| children | 31def5db596a |
| 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) | |
|
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 Copyright (C) 1991, 1993, 1996, 1997, 1998, 2001, 2002, 2003, 2004, |
| 106815 | 4 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 5503 | 5 |
| 6 This file is part of GNU Emacs. | |
| 7 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
| 5503 | 9 it under the terms of the GNU General Public License as published by |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
|
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
11 (at your option) any later version. |
| 5503 | 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 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 5503 | 20 |
| 5980 | 21 #include <config.h> |
| 5503 | 22 |
| 23 #ifdef MSDOS | |
| 24 /* The entire file is within this conditional */ | |
| 25 | |
| 26 #include <stdio.h> | |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
27 #include <string.h> |
| 5503 | 28 #include <dos.h> |
|
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
102838
diff
changeset
|
29 #include <setjmp.h> |
| 5503 | 30 #include "lisp.h" |
| 31 #include "buffer.h" | |
| 32 #include "termchar.h" | |
|
97653
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
33 #include "frame.h" |
| 5503 | 34 #include "termhooks.h" |
| 20034 | 35 #include "blockinput.h" |
| 36 #include "window.h" | |
| 5503 | 37 #include "dosfns.h" |
| 38 #include "msdos.h" | |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
39 #include "dispextern.h" |
|
88351
aac41b50c875
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
41914
diff
changeset
|
40 #include "character.h" |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
41 #include "coding.h" |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
42 #include "process.h" |
| 20034 | 43 #include <dpmi.h> |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
44 #include <go32.h> |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
45 #include <dirent.h> |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
46 #include <sys/vfs.h> |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
47 #include <unistd.h> |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
48 #include <grp.h> |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
49 #include <crt0.h> |
| 5503 | 50 |
| 51 DEFUN ("int86", Fint86, Sint86, 2, 2, 0, | |
|
99540
c5c8f07bc47c
* w32-fns.el (w32-shell-dos-semantics):
Juanma Barranquero <lekktu@gmail.com>
parents:
97653
diff
changeset
|
52 doc: /* Call specific MS-DOS interrupt number INTERRUPT with REGISTERS. |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
53 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
|
54 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
55 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
|
56 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
|
57 `set-register-value'. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
58 (Lisp_Object interrupt, Lisp_Object registers) |
| 5503 | 59 { |
| 60 register int i; | |
| 61 int no; | |
| 62 union REGS inregs, outregs; | |
| 63 Lisp_Object val; | |
| 64 | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
65 CHECK_NUMBER (interrupt); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
66 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
|
67 CHECK_VECTOR (registers); |
| 45331 | 68 if (no < 0 || no > 0xff || XVECTOR (registers)-> size != 8) |
| 5503 | 69 return Qnil; |
| 70 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
|
71 CHECK_NUMBER (XVECTOR (registers)->contents[i]); |
| 5503 | 72 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
73 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
|
74 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
|
75 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
|
76 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
|
77 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
|
78 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
|
79 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
|
80 inregs.x.flags = (unsigned long) XFASTINT (XVECTOR (registers)->contents[7]); |
| 5503 | 81 |
| 82 int86 (no, &inregs, &outregs); | |
| 83 | |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
84 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
|
85 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
|
86 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
|
87 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
|
88 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
|
89 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
|
90 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
|
91 XVECTOR (registers)->contents[7] = make_number (outregs.x.flags); |
| 5503 | 92 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
93 return registers; |
| 5503 | 94 } |
| 95 | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
96 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
|
97 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
|
98 Return the updated VECTOR. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
99 (Lisp_Object address, Lisp_Object vector) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
100 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
101 register int i; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
102 int offs, len; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
103 char *buf; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
104 Lisp_Object val; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
105 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
106 CHECK_NUMBER (address); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
107 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
|
108 CHECK_VECTOR (vector); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
109 len = XVECTOR (vector)-> size; |
|
58012
934f6fb6fd8a
* dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
110 if (len < 1 || len > 2048 || offs < 0 || offs > 0xfffff - len) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
111 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
112 buf = alloca (len); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
113 dosmemget (offs, len, buf); |
| 45331 | 114 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
115 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
|
116 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
|
117 |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
118 return vector; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
119 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
120 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
121 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
|
122 doc: /* Write DOS memory at offset ADDRESS from VECTOR. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
123 (Lisp_Object address, Lisp_Object vector) |
|
13180
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 register int i; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
126 int offs, len; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
127 char *buf; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
128 Lisp_Object val; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
129 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
130 CHECK_NUMBER (address); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
131 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
|
132 CHECK_VECTOR (vector); |
|
14070
c74bb6ea72ab
(Fint86, Fdos_memget, Fdos_memput, Fmsdos_set_keyboard): Harmonize
Erik Naggum <erik@naggum.no>
parents:
13745
diff
changeset
|
133 len = XVECTOR (vector)-> size; |
|
58012
934f6fb6fd8a
* dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
Jan Dj?rv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
134 if (len < 1 || len > 2048 || offs < 0 || offs > 0xfffff - len) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
135 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
136 buf = alloca (len); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
137 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
138 for (i = 0; i < len; i++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
139 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
140 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
|
141 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
|
142 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
143 |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
144 dosmemput (buf, len, offs); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
145 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
146 } |
|
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 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
|
149 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
|
150 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
|
151 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
|
152 The current keyboard layout is available in dos-keyboard-code. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
153 (Lisp_Object country_code, Lisp_Object allkeys) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
154 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
155 CHECK_NUMBER (country_code); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
156 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
|
157 return Qnil; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
158 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
159 } |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
160 |
| 9572 | 161 #ifndef HAVE_X_WINDOWS |
| 162 /* Later we might want to control the mouse interface with this function, | |
| 163 e.g., with respect to non-80 column screen modes. */ | |
| 164 | |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
165 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
|
166 doc: /* Report whether a mouse is present. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
167 (void) |
| 9572 | 168 { |
| 169 if (have_mouse) | |
| 170 return Qt; | |
| 171 else | |
| 172 return Qnil; | |
| 173 } | |
| 174 #endif | |
| 175 | |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
176 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
|
177 doc: /* Initialize and enable mouse if available. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
178 (void) |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
179 { |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
180 if (have_mouse) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
181 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
182 have_mouse = 1; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
183 mouse_init (); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
184 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
185 } |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
186 return Qnil; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
187 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
188 |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
189 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
|
190 doc: /* Enable mouse if available. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
191 (void) |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
192 { |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
193 if (have_mouse) |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
194 { |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
195 have_mouse = 1; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
196 mouse_on (); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
197 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
198 return have_mouse ? Qt : Qnil; |
|
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 |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
201 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
|
202 doc: /* Disable mouse if available. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
203 (void) |
|
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 mouse_off (); |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
206 if (have_mouse) have_mouse = -1; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
207 return Qnil; |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
208 } |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
209 |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
210 DEFUN ("insert-startup-screen", Finsert_startup_screen, Sinsert_startup_screen, 0, 0, "", |
|
73685
f25200449e7b
(Finsert_startup_screen): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
211 doc: /* Insert copy of screen contents prior to starting Emacs. |
|
41914
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
212 Return nil if startup screen is not available. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
213 (void) |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
214 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
215 char *s; |
| 45331 | 216 int rows, cols, i, j; |
| 217 | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
218 if (!dos_get_saved_screen (&s, &rows, &cols)) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
219 return Qnil; |
| 45331 | 220 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
221 for (i = 0; i < rows; i++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
222 { |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
223 for (j = 0; j < cols; j++) |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
224 { |
|
19288
bdc4b7818976
(Finsert_startup_screen): Call `insert_char' with a single argument.
Richard M. Stallman <rms@gnu.org>
parents:
16335
diff
changeset
|
225 insert_char (*s); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
226 s += 2; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
227 } |
|
19288
bdc4b7818976
(Finsert_startup_screen): Call `insert_char' with a single argument.
Richard M. Stallman <rms@gnu.org>
parents:
16335
diff
changeset
|
228 insert_char ('\n'); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
229 } |
|
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 return Qt; |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
232 } |
| 9572 | 233 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
234 /* country info */ |
|
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
235 EMACS_INT dos_country_code; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
236 EMACS_INT dos_codepage; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
237 EMACS_INT dos_timezone_offset; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
238 EMACS_INT dos_decimal_point; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
239 EMACS_INT dos_keyboard_layout; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
240 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
|
241 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
|
242 0, 0, /* date format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
243 '$', 0, 0, 0, 0, /* currency string */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
244 ',', 0, /* thousands separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
245 '.', 0, /* decimal separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
246 '/', 0, /* date separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
247 ':', 0, /* time separator */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
248 0, /* currency format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
249 2, /* digits after decimal in currency */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
250 0, /* time format */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
251 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
|
252 ' ', 0, /* data-list separator (?) */ |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
253 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
|
254 }; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
255 |
|
43713
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
256 EMACS_INT dos_hyper_key; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
257 EMACS_INT dos_super_key; |
|
f92c4d87863a
Change defvar_int def and vars to use EMACS_INT instead of just int.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41914
diff
changeset
|
258 EMACS_INT dos_keypad_mode; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
259 |
| 5503 | 260 Lisp_Object Vdos_version; |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
261 Lisp_Object Vdos_display_scancodes; |
| 20034 | 262 |
| 263 #ifndef HAVE_X_WINDOWS | |
| 264 static unsigned dos_windows_version; | |
| 265 Lisp_Object Vdos_windows_version; | |
| 266 | |
| 267 char parent_vm_title[50]; /* Ralf Brown says 30 is enough */ | |
| 268 int w95_set_virtual_machine_title (const char *); | |
| 269 | |
| 270 void | |
| 271 restore_parent_vm_title (void) | |
| 272 { | |
| 273 if (NILP (Vdos_windows_version)) | |
| 274 return; | |
| 275 if ((dos_windows_version & 0xff) >= 4 && parent_vm_title[0]) | |
| 276 w95_set_virtual_machine_title (parent_vm_title); | |
| 277 delay (50); | |
| 278 } | |
| 279 #endif /* !HAVE_X_WINDOWS */ | |
| 45331 | 280 |
| 5503 | 281 void |
|
109162
8efd6d04c47a
Convert function definitions in MS-DOS sources to ANSI C.
Eli Zaretskii <eliz@gnu.org>
parents:
107733
diff
changeset
|
282 init_dosfns (void) |
| 5503 | 283 { |
| 284 union REGS regs; | |
| 285 _go32_dpmi_registers dpmiregs; | |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
286 unsigned long xbuf = _go32_info_block.linear_address_of_transfer_buffer; |
| 5503 | 287 |
| 9572 | 288 #ifndef SYSTEM_MALLOC |
| 5503 | 289 get_lim_data (); /* why the hell isn't this called elsewhere? */ |
| 9572 | 290 #endif |
| 5503 | 291 |
| 292 regs.x.ax = 0x3000; | |
| 293 intdos (®s, ®s); | |
| 294 Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah)); | |
| 295 | |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
296 /* 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
|
297 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
|
298 dpmiregs.x.ds = xbuf >> 4; |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
299 dpmiregs.x.dx = 0; |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
300 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
|
301 _go32_dpmi_simulate_int (0x21, &dpmiregs); |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
302 if (dpmiregs.x.flags & 1) |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
303 { |
|
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
304 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
|
305 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
|
306 } |
| 5503 | 307 else |
| 308 { | |
| 309 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
|
310 dosmemget (xbuf, DOS_COUNTRY_INFO, dos_country_info); |
| 5503 | 311 } |
|
19294
1f8ca0c4836f
(init_dosfns): Avoid calling DOS memory-allocation
Richard M. Stallman <rms@gnu.org>
parents:
19288
diff
changeset
|
312 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
313 dos_set_keyboard (dos_country_code, 0); |
| 5503 | 314 |
| 315 regs.x.ax = 0x6601; | |
| 316 intdos (®s, ®s); | |
| 317 if (regs.x.cflag) | |
| 318 /* Estimate code page from country code */ | |
| 45331 | 319 switch (dos_country_code) |
| 5503 | 320 { |
| 321 case 45: /* Denmark */ | |
| 322 case 47: /* Norway */ | |
| 323 dos_codepage = 865; | |
| 324 break; | |
| 325 default: | |
| 326 /* US */ | |
| 327 dos_codepage = 437; | |
| 328 } | |
| 329 else | |
| 330 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
|
331 |
| 20034 | 332 #ifndef HAVE_X_WINDOWS |
| 333 parent_vm_title[0] = '\0'; | |
| 334 | |
| 335 /* If we are running from DOS box on MS-Windows, get Windows version. */ | |
| 336 dpmiregs.x.ax = 0x1600; /* enhanced mode installation check */ | |
| 337 dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0; | |
| 338 _go32_dpmi_simulate_int (0x2f, &dpmiregs); | |
| 339 /* We only support Windows-specific features when we run on Windows 9X | |
| 340 or on Windows 3.X/enhanced mode. | |
| 341 | |
| 342 Int 2Fh/AX=1600h returns: | |
| 343 | |
| 344 AL = 00: no Windows at all; | |
| 345 AL = 01: Windows/386 2.x; | |
| 346 AL = 80h: Windows 3.x in mode other than enhanced; | |
| 347 AL = FFh: Windows/386 2.x | |
| 348 | |
| 349 We also check AH > 0 (Windows 3.1 or later), in case AL tricks us. */ | |
| 350 if (dpmiregs.h.al > 2 && dpmiregs.h.al != 0x80 && dpmiregs.h.al != 0xff | |
| 351 && (dpmiregs.h.al > 3 || dpmiregs.h.ah > 0)) | |
| 352 { | |
| 353 dos_windows_version = dpmiregs.x.ax; | |
| 354 Vdos_windows_version = | |
| 355 Fcons (make_number (dpmiregs.h.al), make_number (dpmiregs.h.ah)); | |
| 356 | |
| 357 /* Save the current title of this virtual machine, so we can restore | |
| 358 it before exiting. Otherwise, Windows 95 will continue to use | |
| 359 the title we set even after we are history, stupido... */ | |
| 360 if (dpmiregs.h.al >= 4) | |
| 361 { | |
| 362 dpmiregs.x.ax = 0x168e; | |
| 363 dpmiregs.x.dx = 3; /* get VM title */ | |
| 364 dpmiregs.x.cx = sizeof(parent_vm_title) - 1; | |
| 365 dpmiregs.x.es = __tb >> 4; | |
| 366 dpmiregs.x.di = __tb & 15; | |
| 367 dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0; | |
| 368 _go32_dpmi_simulate_int (0x2f, &dpmiregs); | |
| 369 if (dpmiregs.x.ax == 1) | |
| 370 dosmemget (__tb, sizeof(parent_vm_title), parent_vm_title); | |
| 371 } | |
| 372 } | |
| 373 else | |
| 374 { | |
| 375 dos_windows_version = 0; | |
| 376 Vdos_windows_version = Qnil; | |
| 377 } | |
| 378 #endif /* !HAVE_X_WINDOWS */ | |
| 379 | |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
380 /* 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
|
381 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
|
382 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
|
383 __opendir_flags = __OPENDIR_FIND_HIDDEN; |
|
15226
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
384 |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
385 #if __DJGPP_MINOR__ == 0 |
|
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
386 /* 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
|
387 (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
|
388 if (!NILP (Fmsdos_long_file_names ())) |
|
31a30cc1d61a
(init_dosfns) [DJGPP >= 2]: Make `opendir' preserve
Richard M. Stallman <rms@gnu.org>
parents:
15173
diff
changeset
|
389 __opendir_flags |= __OPENDIR_PRESERVE_CASE; |
|
16335
6cf0a8b5c895
(init_dosfns): When setting `__opendir_flags' value,
Richard M. Stallman <rms@gnu.org>
parents:
15393
diff
changeset
|
390 #endif /* __DJGPP_MINOR__ == 0 */ |
| 5503 | 391 } |
| 392 | |
| 20034 | 393 #ifndef HAVE_X_WINDOWS |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
394 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
395 /* 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
|
396 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
397 /* 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
|
398 in the default VGA palette. */ |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
399 static char *vga_colors[16] = { |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
400 "black", "blue", "green", "cyan", "red", "magenta", "brown", |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
401 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan", |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
402 "lightred", "lightmagenta", "yellow", "white" |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
403 }; |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
404 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
405 /* 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
|
406 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
|
407 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
|
408 "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
|
409 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
|
410 on lisp/term/tty-colors.el). */ |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
411 int |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
412 msdos_stdcolor_idx (const char *name) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
413 { |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
414 int i; |
|
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 for (i = 0; i < sizeof (vga_colors) / sizeof (vga_colors[0]); i++) |
|
95209
6758d4235380
* dispextern.h, xfaces.c (xstrcasecmp): Renamed from xstricmp.
Jason Rumney <jasonr@gnu.org>
parents:
95205
diff
changeset
|
417 if (xstrcasecmp (name, vga_colors[i]) == 0) |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
418 return i; |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
419 |
|
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26729
diff
changeset
|
420 return |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
421 strcmp (name, unspecified_fg) == 0 ? FACE_TTY_DEFAULT_FG_COLOR |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
422 : 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
|
423 : FACE_TTY_DEFAULT_COLOR; |
|
25113
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 |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
426 /* 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
|
427 Lisp_Object |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
428 msdos_stdcolor_name (int idx) |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
429 { |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
430 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
|
431 |
|
27115
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
432 if (idx == FACE_TTY_DEFAULT_FG_COLOR) |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
433 return build_string (unspecified_fg); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
434 else if (idx == FACE_TTY_DEFAULT_BG_COLOR) |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
435 return build_string (unspecified_bg); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
436 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
|
437 return build_string (vga_colors[idx]); |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
438 else |
|
13a2c64e6ade
(unspecified_colors): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
439 return Qunspecified; /* meaning the default */ |
|
25113
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
440 } |
|
73c54061f4bb
(msdos_stdcolor_name, msdos_stdcolor_idx): New
Eli Zaretskii <eliz@gnu.org>
parents:
23814
diff
changeset
|
441 |
| 20034 | 442 /* Support for features that are available when we run in a DOS box |
| 443 on MS-Windows. */ | |
| 444 int | |
| 445 ms_windows_version (void) | |
| 446 { | |
| 447 return dos_windows_version; | |
| 448 } | |
| 449 | |
| 450 /* Set the title of the current virtual machine, to appear on | |
| 451 the caption bar of that machine's window. */ | |
| 452 | |
| 453 int | |
| 454 w95_set_virtual_machine_title (const char *title_string) | |
| 455 { | |
| 456 /* Only Windows 9X (version 4 and higher) support this function. */ | |
| 457 if (!NILP (Vdos_windows_version) | |
| 458 && (dos_windows_version & 0xff) >= 4) | |
| 459 { | |
| 460 _go32_dpmi_registers regs; | |
| 461 dosmemput (title_string, strlen (title_string) + 1, __tb); | |
| 462 regs.x.ax = 0x168e; | |
| 463 regs.x.dx = 1; | |
| 464 regs.x.es = __tb >> 4; | |
| 465 regs.x.di = __tb & 15; | |
| 466 regs.x.sp = regs.x.ss = regs.x.flags = 0; | |
| 467 _go32_dpmi_simulate_int (0x2f, ®s); | |
| 468 return regs.x.ax == 1; | |
| 469 } | |
| 470 return 0; | |
| 471 } | |
| 472 | |
| 473 /* Change the title of frame F to NAME. | |
| 474 If NAME is nil, use the frame name as the title. | |
| 475 | |
| 476 If Emacs is not run from a DOS box on Windows 9X, this only | |
| 477 sets the name in the frame struct, but has no other effects. */ | |
| 478 | |
| 479 void | |
|
109162
8efd6d04c47a
Convert function definitions in MS-DOS sources to ANSI C.
Eli Zaretskii <eliz@gnu.org>
parents:
107733
diff
changeset
|
480 x_set_title (struct frame *f, Lisp_Object name) |
| 20034 | 481 { |
| 482 /* Don't change the title if it's already NAME. */ | |
| 483 if (EQ (name, f->title)) | |
| 484 return; | |
| 485 | |
| 486 update_mode_lines = 1; | |
| 487 | |
| 488 f->title = name; | |
| 489 | |
| 490 if (NILP (name)) | |
| 491 name = f->name; | |
| 492 | |
| 493 if (FRAME_MSDOS_P (f)) | |
| 494 { | |
| 495 BLOCK_INPUT; | |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45331
diff
changeset
|
496 w95_set_virtual_machine_title (SDATA (name)); |
| 20034 | 497 UNBLOCK_INPUT; |
| 498 } | |
| 499 } | |
| 500 #endif /* !HAVE_X_WINDOWS */ | |
| 501 | |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
502 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
|
503 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
|
504 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
|
505 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
|
506 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
|
507 If the underlying system call fails, value is nil. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109162
diff
changeset
|
508 (Lisp_Object filename) |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
509 { |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
510 struct statfs stfs; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
511 Lisp_Object encoded, value; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
512 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
38319
diff
changeset
|
513 CHECK_STRING (filename); |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
514 filename = Fexpand_file_name (filename, Qnil); |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
515 encoded = ENCODE_FILE (filename); |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
516 |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45331
diff
changeset
|
517 if (statfs (SDATA (encoded), &stfs)) |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
518 value = Qnil; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
519 else |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
520 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
|
521 make_float ((double) stfs.f_bsize * stfs.f_bfree), |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
522 make_float ((double) stfs.f_bsize * stfs.f_bavail)); |
|
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 return value; |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
525 } |
|
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
526 |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
527 /* System depended enumeration of and access to system processes a-la |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
528 ps(1). Here, we only return info about the running Emacs process. |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
529 (There are no other processes on DOS, right?) */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
530 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
531 Lisp_Object |
|
109162
8efd6d04c47a
Convert function definitions in MS-DOS sources to ANSI C.
Eli Zaretskii <eliz@gnu.org>
parents:
107733
diff
changeset
|
532 list_system_processes (void) |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
533 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
534 Lisp_Object proclist = Qnil; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
535 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
536 proclist = Fcons (make_fixnum_or_float (getpid ()), proclist); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
537 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
538 return proclist; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
539 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
540 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
541 Lisp_Object |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
542 system_process_attributes (Lisp_Object pid) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
543 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
544 int proc_id; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
545 Lisp_Object attrs = Qnil; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
546 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
547 CHECK_NUMBER_OR_FLOAT (pid); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
548 proc_id = FLOATP (pid) ? XFLOAT_DATA (pid) : XINT (pid); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
549 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
550 if (proc_id == getpid ()) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
551 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
552 EMACS_INT uid, gid; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
553 char *usr; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
554 struct group *gr; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
555 char cmd[FILENAME_MAX]; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
556 char *cmdline = NULL, *p, *q; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
557 size_t cmdline_size = 0; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
558 int i; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
559 Lisp_Object cmd_str, decoded_cmd, tem; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
560 double pmem; |
|
102838
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
561 #ifndef SYSTEM_MALLOC |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
562 extern unsigned long ret_lim_data (); |
|
102838
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
563 #endif |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
564 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
565 uid = getuid (); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
566 attrs = Fcons (Fcons (Qeuid, make_fixnum_or_float (uid)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
567 usr = getlogin (); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
568 if (usr) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
569 attrs = Fcons (Fcons (Quser, build_string (usr)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
570 gid = getgid (); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
571 attrs = Fcons (Fcons (Qegid, make_fixnum_or_float (gid)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
572 gr = getgrgid (gid); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
573 if (gr) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
574 attrs = Fcons (Fcons (Qgroup, build_string (gr->gr_name)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
575 strcpy (cmd, basename (__crt0_argv[0])); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
576 /* Command name is encoded in locale-coding-system; decode it. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
577 cmd_str = make_unibyte_string (cmd, strlen (cmd)); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
578 decoded_cmd = code_convert_string_norecord (cmd_str, |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
579 Vlocale_coding_system, 0); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
580 attrs = Fcons (Fcons (Qcomm, decoded_cmd), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
581 /* Pretend we have 0 as PPID. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
582 attrs = Fcons (Fcons (Qppid, make_number (0)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
583 attrs = Fcons (Fcons (Qpgrp, pid), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
584 attrs = Fcons (Fcons (Qttname, build_string ("/dev/tty")), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
585 /* We are never idle! */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
586 tem = Fget_internal_run_time (); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
587 attrs = Fcons (Fcons (Qtime, tem), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
588 attrs = Fcons (Fcons (Qthcount, make_number (1)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
589 attrs = Fcons (Fcons (Qstart, |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
590 Fsymbol_value (intern ("before-init-time"))), |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
591 attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
592 attrs = Fcons (Fcons (Qvsize, |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
593 make_fixnum_or_float ((unsigned long)sbrk(0)/1024)), |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
594 attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
595 attrs = Fcons (Fcons (Qetime, tem), attrs); |
|
102838
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
596 #ifndef SYSTEM_MALLOC |
|
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
597 /* ret_lim_data is on vm-limit.c, which is not compiled in under |
|
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
598 SYSTEM_MALLOC. */ |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
599 pmem = (double)((unsigned long) sbrk (0)) / ret_lim_data () * 100.0; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
600 if (pmem > 100) |
|
102838
a722c792ebd7
(system_process_attributes) [SYSTEM_MALLOC]: Don't call ret_lim_data.
Eli Zaretskii <eliz@gnu.org>
parents:
100859
diff
changeset
|
601 #endif |
|
100859
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
602 pmem = 100; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
603 attrs = Fcons (Fcons (Qpmem, make_float (pmem)), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
604 /* Pass 1: Count how much storage we need. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
605 for (i = 0; i < __crt0_argc; i++) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
606 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
607 cmdline_size += strlen (__crt0_argv[i]) + 1; /* +1 for blank delim */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
608 if (strpbrk (__crt0_argv[i], " \t\n\r\v\f")) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
609 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
610 cmdline_size += 2; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
611 for (p = __crt0_argv[i]; *p; p++) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
612 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
613 if (*p == '"') |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
614 cmdline_size++; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
615 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
616 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
617 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
618 /* Pass 2: Allocate storage and concatenate argv[]. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
619 cmdline = xmalloc (cmdline_size + 1); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
620 for (i = 0, q = cmdline; i < __crt0_argc; i++) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
621 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
622 if (strpbrk (__crt0_argv[i], " \t\n\r\v\f")) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
623 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
624 *q++ = '"'; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
625 for (p = __crt0_argv[i]; *p; p++) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
626 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
627 if (*p == '\"') |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
628 *q++ = '\\'; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
629 *q++ = *p; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
630 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
631 *q++ = '"'; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
632 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
633 else |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
634 { |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
635 strcpy (q, __crt0_argv[i]); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
636 q += strlen (__crt0_argv[i]); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
637 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
638 *q++ = ' '; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
639 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
640 /* Remove the trailing blank. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
641 if (q > cmdline) |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
642 q[-1] = '\0'; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
643 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
644 /* Command line is encoded in locale-coding-system; decode it. */ |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
645 cmd_str = make_unibyte_string (cmdline, strlen (cmdline)); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
646 decoded_cmd = code_convert_string_norecord (cmd_str, |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
647 Vlocale_coding_system, 0); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
648 xfree (cmdline); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
649 attrs = Fcons (Fcons (Qargs, decoded_cmd), attrs); |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
650 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
651 |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
652 return attrs; |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
653 } |
|
bb7058ae1991
(system_process_attributes, list_system_processes): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
99540
diff
changeset
|
654 |
| 20034 | 655 void |
| 656 dos_cleanup (void) | |
| 657 { | |
|
97653
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
658 struct tty_display_info *tty; |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
659 |
| 20034 | 660 #ifndef HAVE_X_WINDOWS |
| 661 restore_parent_vm_title (); | |
| 662 #endif | |
|
23814
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
663 /* 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
|
664 crashing and some vital info was written there. */ |
|
97653
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
665 if (FRAMEP (selected_frame)) |
|
23814
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
666 { |
|
97653
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
667 struct frame *sf = XFRAME (selected_frame); |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
668 |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
669 if (FRAME_LIVE_P (sf) |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
670 && (FRAME_MSDOS_P (sf) || FRAME_TERMCAP_P (sf))) |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
671 { |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
672 tty = CURTTY (); |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
673 if (tty->termscript) |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
674 { |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
675 fflush (tty->termscript); |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
676 fsync (fileno (tty->termscript)); |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
677 } |
|
8e2483da8823
Include frame.h before termhooks.h.
Eli Zaretskii <eliz@gnu.org>
parents:
95209
diff
changeset
|
678 } |
|
23814
3229c65a13c5
(dos_cleanup): Flush and fsync the termscript stream.
Eli Zaretskii <eliz@gnu.org>
parents:
21430
diff
changeset
|
679 } |
| 20034 | 680 } |
| 681 | |
| 5503 | 682 /* |
| 683 * Define everything | |
| 684 */ | |
|
109162
8efd6d04c47a
Convert function definitions in MS-DOS sources to ANSI C.
Eli Zaretskii <eliz@gnu.org>
parents:
107733
diff
changeset
|
685 void |
|
8efd6d04c47a
Convert function definitions in MS-DOS sources to ANSI C.
Eli Zaretskii <eliz@gnu.org>
parents:
107733
diff
changeset
|
686 syms_of_dosfns (void) |
| 5503 | 687 { |
| 688 defsubr (&Sint86); | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
689 defsubr (&Sdos_memget); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
690 defsubr (&Sdos_memput); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
691 defsubr (&Smsdos_mouse_init); |
|
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
692 defsubr (&Smsdos_mouse_enable); |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
693 defsubr (&Smsdos_set_keyboard); |
|
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
694 defsubr (&Sinsert_startup_screen); |
|
12990
93cc41315528
(Fmsdos_mouse_enable, Fmsdos_mouse_disable)
Richard M. Stallman <rms@gnu.org>
parents:
10504
diff
changeset
|
695 defsubr (&Smsdos_mouse_disable); |
|
34348
5cd770204501
(Ffile_system_info): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
32544
diff
changeset
|
696 defsubr (&Sfile_system_info); |
| 9572 | 697 #ifndef HAVE_X_WINDOWS |
| 698 defsubr (&Smsdos_mouse_p); | |
| 699 #endif | |
| 5503 | 700 |
| 701 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
|
702 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
|
703 Usually this is the international telephone prefix. */); |
| 5503 | 704 |
| 705 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
|
706 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
|
707 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
|
708 437 United States |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
709 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
|
710 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
|
711 857 Turkish |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
712 860 Portugal |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
713 861 Iceland |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
714 863 Canada (French) |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
715 865 Norway/Denmark */); |
| 5503 | 716 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
717 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
|
718 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
|
719 Implicitly modified when the TZ variable is changed. */); |
| 45331 | 720 |
| 5503 | 721 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
|
722 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
|
723 |
| 20034 | 724 #ifndef HAVE_X_WINDOWS |
| 725 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
|
726 doc: /* The (MAJOR . MINOR) Windows version for DOS session on MS-Windows. */); |
| 20034 | 727 #endif |
| 728 | |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
729 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
|
730 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
|
731 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
|
732 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
|
733 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
|
734 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
735 Vdos_display_scancodes = Qnil; |
| 45331 | 736 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
737 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
|
738 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
|
739 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
|
740 dos_hyper_key = 0; |
| 45331 | 741 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
742 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
|
743 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
|
744 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
|
745 dos_super_key = 0; |
| 45331 | 746 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
747 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
|
748 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
|
749 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
|
750 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
|
751 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
752 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
|
753 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
|
754 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
|
755 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
|
756 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
757 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
|
758 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
|
759 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
760 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
|
761 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
|
762 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
|
763 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
|
764 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
765 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
|
766 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
|
767 |
|
ee8ae85f22ae
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
41912
diff
changeset
|
768 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
|
769 dos_keypad_mode = 0x75; |
| 45331 | 770 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
771 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
|
772 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
|
773 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
|
774 dos_keyboard_layout = 1; /* US */ |
| 45331 | 775 |
|
13180
59663cba4b02
(insert-startup-screen): New function.
Kim F. Storm <storm@cua.dk>
parents:
12990
diff
changeset
|
776 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
|
777 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
|
778 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
|
779 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
|
780 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
|
781 dos_decimal_point = 0; |
| 5503 | 782 } |
| 783 #endif /* MSDOS */ | |
| 52401 | 784 |
| 785 /* arch-tag: f5ea8847-a014-42c9-83f5-7738ad640b17 | |
| 786 (do not change this comment) */ |
