1 /* MS-DOS specific Lisp utilities. Coded by Manabu Higashida, 1991.
2 Major changes May-July 1993 Morten Welinder (only 10% original code left)
3 Copyright (C) 1991, 1993, 1996, 1997, 1998, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 /* The entire file is within this conditional */
34 #include "termhooks.h"
35 #include "blockinput.h"
39 #include "dispextern.h"
40 #include "character.h"
51 DEFUN ("int86", Fint86
, Sint86
, 2, 2, 0,
52 doc
: /* Call specific MS-DOS interrupt number INTERRUPT with REGISTERS.
53 Return the updated REGISTER vector.
55 INTERRUPT should be an integer in the range 0 to 255.
56 REGISTERS should be a vector produced by `make-register' and
57 `set-register-value'. */)
58 (Lisp_Object interrupt
, Lisp_Object registers
)
62 union REGS inregs
, outregs
;
65 CHECK_NUMBER (interrupt
);
66 no
= (unsigned long) XINT (interrupt
);
67 CHECK_VECTOR (registers
);
68 if (no
< 0 || no
> 0xff || XVECTOR (registers
)-> size
!= 8)
70 for (i
= 0; i
< 8; i
++)
71 CHECK_NUMBER (XVECTOR (registers
)->contents
[i
]);
73 inregs
.x
.ax
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[0]);
74 inregs
.x
.bx
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[1]);
75 inregs
.x
.cx
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[2]);
76 inregs
.x
.dx
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[3]);
77 inregs
.x
.si
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[4]);
78 inregs
.x
.di
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[5]);
79 inregs
.x
.cflag
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[6]);
80 inregs
.x
.flags
= (unsigned long) XFASTINT (XVECTOR (registers
)->contents
[7]);
82 int86 (no
, &inregs
, &outregs
);
84 XVECTOR (registers
)->contents
[0] = make_number (outregs
.x
.ax
);
85 XVECTOR (registers
)->contents
[1] = make_number (outregs
.x
.bx
);
86 XVECTOR (registers
)->contents
[2] = make_number (outregs
.x
.cx
);
87 XVECTOR (registers
)->contents
[3] = make_number (outregs
.x
.dx
);
88 XVECTOR (registers
)->contents
[4] = make_number (outregs
.x
.si
);
89 XVECTOR (registers
)->contents
[5] = make_number (outregs
.x
.di
);
90 XVECTOR (registers
)->contents
[6] = make_number (outregs
.x
.cflag
);
91 XVECTOR (registers
)->contents
[7] = make_number (outregs
.x
.flags
);
96 DEFUN ("msdos-memget", Fdos_memget
, Sdos_memget
, 2, 2, 0,
97 doc
: /* Read DOS memory at offset ADDRESS into VECTOR.
98 Return the updated VECTOR. */)
99 (Lisp_Object address
, Lisp_Object vector
)
106 CHECK_NUMBER (address
);
107 offs
= (unsigned long) XINT (address
);
108 CHECK_VECTOR (vector
);
109 len
= XVECTOR (vector
)-> size
;
110 if (len
< 1 || len
> 2048 || offs
< 0 || offs
> 0xfffff - len
)
113 dosmemget (offs
, len
, buf
);
115 for (i
= 0; i
< len
; i
++)
116 XVECTOR (vector
)->contents
[i
] = make_number (buf
[i
]);
121 DEFUN ("msdos-memput", Fdos_memput
, Sdos_memput
, 2, 2, 0,
122 doc
: /* Write DOS memory at offset ADDRESS from VECTOR. */)
123 (Lisp_Object address
, Lisp_Object vector
)
130 CHECK_NUMBER (address
);
131 offs
= (unsigned long) XINT (address
);
132 CHECK_VECTOR (vector
);
133 len
= XVECTOR (vector
)-> size
;
134 if (len
< 1 || len
> 2048 || offs
< 0 || offs
> 0xfffff - len
)
138 for (i
= 0; i
< len
; i
++)
140 CHECK_NUMBER (XVECTOR (vector
)->contents
[i
]);
141 buf
[i
] = (unsigned char) XFASTINT (XVECTOR (vector
)->contents
[i
]) & 0xFF;
144 dosmemput (buf
, len
, offs
);
148 DEFUN ("msdos-set-keyboard", Fmsdos_set_keyboard
, Smsdos_set_keyboard
, 1, 2, 0,
149 doc
: /* Set keyboard layout according to COUNTRY-CODE.
150 If the optional argument ALLKEYS is non-nil, the keyboard is mapped for
151 all keys; otherwise it is only used when the ALT key is pressed.
152 The current keyboard layout is available in dos-keyboard-code. */)
153 (Lisp_Object country_code
, Lisp_Object allkeys
)
155 CHECK_NUMBER (country_code
);
156 if (!dos_set_keyboard (XINT (country_code
), !NILP (allkeys
)))
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. */
165 DEFUN ("msdos-mouse-p", Fmsdos_mouse_p
, Smsdos_mouse_p
, 0, 0, 0,
166 doc
: /* Report whether a mouse is present. */)
176 DEFUN ("msdos-mouse-init", Fmsdos_mouse_init
, Smsdos_mouse_init
, 0, 0, "",
177 doc
: /* Initialize and enable mouse if available. */)
189 DEFUN ("msdos-mouse-enable", Fmsdos_mouse_enable
, Smsdos_mouse_enable
, 0, 0, "",
190 doc
: /* Enable mouse if available. */)
198 return have_mouse
? Qt
: Qnil
;
201 DEFUN ("msdos-mouse-disable", Fmsdos_mouse_disable
, Smsdos_mouse_disable
, 0, 0, "",
202 doc
: /* Disable mouse if available. */)
206 if (have_mouse
) have_mouse
= -1;
210 DEFUN ("insert-startup-screen", Finsert_startup_screen
, Sinsert_startup_screen
, 0, 0, "",
211 doc
: /* Insert copy of screen contents prior to starting Emacs.
212 Return nil if startup screen is not available. */)
216 int rows
, cols
, i
, j
;
218 if (!dos_get_saved_screen (&s
, &rows
, &cols
))
221 for (i
= 0; i
< rows
; i
++)
223 for (j
= 0; j
< cols
; j
++)
235 EMACS_INT dos_country_code
;
236 EMACS_INT dos_codepage
;
237 EMACS_INT dos_timezone_offset
;
238 EMACS_INT dos_decimal_point
;
239 EMACS_INT dos_keyboard_layout
;
240 unsigned char dos_country_info
[DOS_COUNTRY_INFO
];
241 static unsigned char usa_country_info
[DOS_COUNTRY_INFO
] = {
242 0, 0, /* date format */
243 '$', 0, 0, 0, 0, /* currency string */
244 ',', 0, /* thousands separator */
245 '.', 0, /* decimal separator */
246 '/', 0, /* date separator */
247 ':', 0, /* time separator */
248 0, /* currency format */
249 2, /* digits after decimal in currency */
251 0, 0, 0, 0, /* address of case map routine, GPF if used */
252 ' ', 0, /* data-list separator (?) */
253 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */
256 EMACS_INT dos_hyper_key
;
257 EMACS_INT dos_super_key
;
258 EMACS_INT dos_keypad_mode
;
260 Lisp_Object Vdos_version
;
261 Lisp_Object Vdos_display_scancodes
;
263 #ifndef HAVE_X_WINDOWS
264 static unsigned dos_windows_version
;
265 Lisp_Object Vdos_windows_version
;
267 char parent_vm_title
[50]; /* Ralf Brown says 30 is enough */
268 int w95_set_virtual_machine_title (const char *);
271 restore_parent_vm_title (void)
273 if (NILP (Vdos_windows_version
))
275 if ((dos_windows_version
& 0xff) >= 4 && parent_vm_title
[0])
276 w95_set_virtual_machine_title (parent_vm_title
);
279 #endif /* !HAVE_X_WINDOWS */
285 _go32_dpmi_registers dpmiregs
;
286 unsigned long xbuf
= _go32_info_block
.linear_address_of_transfer_buffer
;
288 #ifndef SYSTEM_MALLOC
289 get_lim_data (); /* why the hell isn't this called elsewhere? */
293 intdos (®s
, ®s
);
294 Vdos_version
= Fcons (make_number (regs
.h
.al
), make_number (regs
.h
.ah
));
296 /* Obtain the country code via DPMI, use DJGPP transfer buffer. */
297 dpmiregs
.x
.ax
= 0x3800;
298 dpmiregs
.x
.ds
= xbuf
>> 4;
300 dpmiregs
.x
.ss
= dpmiregs
.x
.sp
= dpmiregs
.x
.flags
= 0;
301 _go32_dpmi_simulate_int (0x21, &dpmiregs
);
302 if (dpmiregs
.x
.flags
& 1)
304 dos_country_code
= 1; /* assume USA if 213800 failed */
305 memcpy (dos_country_info
, usa_country_info
, DOS_COUNTRY_INFO
);
309 dos_country_code
= dpmiregs
.x
.bx
;
310 dosmemget (xbuf
, DOS_COUNTRY_INFO
, dos_country_info
);
313 dos_set_keyboard (dos_country_code
, 0);
316 intdos (®s
, ®s
);
318 /* Estimate code page from country code */
319 switch (dos_country_code
)
321 case 45: /* Denmark */
322 case 47: /* Norway */
330 dos_codepage
= regs
.x
.bx
& 0xffff;
332 #ifndef HAVE_X_WINDOWS
333 parent_vm_title
[0] = '\0';
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.
342 Int 2Fh/AX=1600h returns:
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
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))
353 dos_windows_version
= dpmiregs
.x
.ax
;
354 Vdos_windows_version
=
355 Fcons (make_number (dpmiregs
.h
.al
), make_number (dpmiregs
.h
.ah
));
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)
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
);
375 dos_windows_version
= 0;
376 Vdos_windows_version
= Qnil
;
378 #endif /* !HAVE_X_WINDOWS */
380 /* Without this, we never see hidden files.
381 Don't OR it with the previous value, so the value recorded at dump
382 time, possibly with `preserve-case' flags set, won't get through. */
383 __opendir_flags
= __OPENDIR_FIND_HIDDEN
;
385 #if __DJGPP_MINOR__ == 0
386 /* Under LFN, preserve the case of files as recorded in the directory
387 (in DJGPP 2.01 and later this is automagically done by the library). */
388 if (!NILP (Fmsdos_long_file_names ()))
389 __opendir_flags
|= __OPENDIR_PRESERVE_CASE
;
390 #endif /* __DJGPP_MINOR__ == 0 */
393 #ifndef HAVE_X_WINDOWS
395 /* Emulation of some X window features from xfns.c and xfaces.c. */
397 /* Standard VGA colors, in the order of their standard numbering
398 in the default VGA palette. */
399 static char *vga_colors
[16] = {
400 "black", "blue", "green", "cyan", "red", "magenta", "brown",
401 "lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
402 "lightred", "lightmagenta", "yellow", "white"
405 /* Given a color name, return its index, or -1 if not found. Note
406 that this only performs case-insensitive comparison against the
407 standard names. For anything more sophisticated, like matching
408 "gray" with "grey" or translating X color names into their MSDOS
409 equivalents, call the Lisp function Qtty_color_desc (defined
410 on lisp/term/tty-colors.el). */
412 msdos_stdcolor_idx (const char *name
)
416 for (i
= 0; i
< sizeof (vga_colors
) / sizeof (vga_colors
[0]); i
++)
417 if (xstrcasecmp (name
, vga_colors
[i
]) == 0)
421 strcmp (name
, unspecified_fg
) == 0 ? FACE_TTY_DEFAULT_FG_COLOR
422 : strcmp (name
, unspecified_bg
) == 0 ? FACE_TTY_DEFAULT_BG_COLOR
423 : FACE_TTY_DEFAULT_COLOR
;
426 /* Given a color index, return its standard name. */
428 msdos_stdcolor_name (int idx
)
430 extern Lisp_Object Qunspecified
;
432 if (idx
== FACE_TTY_DEFAULT_FG_COLOR
)
433 return build_string (unspecified_fg
);
434 else if (idx
== FACE_TTY_DEFAULT_BG_COLOR
)
435 return build_string (unspecified_bg
);
436 else if (idx
>= 0 && idx
< sizeof (vga_colors
) / sizeof (vga_colors
[0]))
437 return build_string (vga_colors
[idx
]);
439 return Qunspecified
; /* meaning the default */
442 /* Support for features that are available when we run in a DOS box
445 ms_windows_version (void)
447 return dos_windows_version
;
450 /* Set the title of the current virtual machine, to appear on
451 the caption bar of that machine's window. */
454 w95_set_virtual_machine_title (const char *title_string
)
456 /* Only Windows 9X (version 4 and higher) support this function. */
457 if (!NILP (Vdos_windows_version
)
458 && (dos_windows_version
& 0xff) >= 4)
460 _go32_dpmi_registers regs
;
461 dosmemput (title_string
, strlen (title_string
) + 1, __tb
);
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;
473 /* Change the title of frame F to NAME.
474 If NAME is nil, use the frame name as the title.
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. */
480 x_set_title (struct frame
*f
, Lisp_Object name
)
482 /* Don't change the title if it's already NAME. */
483 if (EQ (name
, f
->title
))
486 update_mode_lines
= 1;
493 if (FRAME_MSDOS_P (f
))
496 w95_set_virtual_machine_title (SDATA (name
));
500 #endif /* !HAVE_X_WINDOWS */
502 DEFUN ("file-system-info", Ffile_system_info
, Sfile_system_info
, 1, 1, 0,
503 doc
: /* Return storage information about the file system FILENAME is on.
504 Value is a list of floats (TOTAL FREE AVAIL), where TOTAL is the total
505 storage of the file system, FREE is the free storage, and AVAIL is the
506 storage available to a non-superuser. All 3 numbers are in bytes.
507 If the underlying system call fails, value is nil. */)
508 (Lisp_Object filename
)
511 Lisp_Object encoded
, value
;
513 CHECK_STRING (filename
);
514 filename
= Fexpand_file_name (filename
, Qnil
);
515 encoded
= ENCODE_FILE (filename
);
517 if (statfs (SDATA (encoded
), &stfs
))
520 value
= list3 (make_float ((double) stfs
.f_bsize
* stfs
.f_blocks
),
521 make_float ((double) stfs
.f_bsize
* stfs
.f_bfree
),
522 make_float ((double) stfs
.f_bsize
* stfs
.f_bavail
));
527 /* System depended enumeration of and access to system processes a-la
528 ps(1). Here, we only return info about the running Emacs process.
529 (There are no other processes on DOS, right?) */
532 list_system_processes (void)
534 Lisp_Object proclist
= Qnil
;
536 proclist
= Fcons (make_fixnum_or_float (getpid ()), proclist
);
542 system_process_attributes (Lisp_Object pid
)
545 Lisp_Object attrs
= Qnil
;
547 CHECK_NUMBER_OR_FLOAT (pid
);
548 proc_id
= FLOATP (pid
) ? XFLOAT_DATA (pid
) : XINT (pid
);
550 if (proc_id
== getpid ())
555 char cmd
[FILENAME_MAX
];
556 char *cmdline
= NULL
, *p
, *q
;
557 size_t cmdline_size
= 0;
559 Lisp_Object cmd_str
, decoded_cmd
, tem
;
561 #ifndef SYSTEM_MALLOC
562 extern unsigned long ret_lim_data ();
566 attrs
= Fcons (Fcons (Qeuid
, make_fixnum_or_float (uid
)), attrs
);
569 attrs
= Fcons (Fcons (Quser
, build_string (usr
)), attrs
);
571 attrs
= Fcons (Fcons (Qegid
, make_fixnum_or_float (gid
)), attrs
);
574 attrs
= Fcons (Fcons (Qgroup
, build_string (gr
->gr_name
)), attrs
);
575 strcpy (cmd
, basename (__crt0_argv
[0]));
576 /* Command name is encoded in locale-coding-system; decode it. */
577 cmd_str
= make_unibyte_string (cmd
, strlen (cmd
));
578 decoded_cmd
= code_convert_string_norecord (cmd_str
,
579 Vlocale_coding_system
, 0);
580 attrs
= Fcons (Fcons (Qcomm
, decoded_cmd
), attrs
);
581 /* Pretend we have 0 as PPID. */
582 attrs
= Fcons (Fcons (Qppid
, make_number (0)), attrs
);
583 attrs
= Fcons (Fcons (Qpgrp
, pid
), attrs
);
584 attrs
= Fcons (Fcons (Qttname
, build_string ("/dev/tty")), attrs
);
585 /* We are never idle! */
586 tem
= Fget_internal_run_time ();
587 attrs
= Fcons (Fcons (Qtime
, tem
), attrs
);
588 attrs
= Fcons (Fcons (Qthcount
, make_number (1)), attrs
);
589 attrs
= Fcons (Fcons (Qstart
,
590 Fsymbol_value (intern ("before-init-time"))),
592 attrs
= Fcons (Fcons (Qvsize
,
593 make_fixnum_or_float ((unsigned long)sbrk(0)/1024)),
595 attrs
= Fcons (Fcons (Qetime
, tem
), attrs
);
596 #ifndef SYSTEM_MALLOC
597 /* ret_lim_data is on vm-limit.c, which is not compiled in under
599 pmem
= (double)((unsigned long) sbrk (0)) / ret_lim_data () * 100.0;
603 attrs
= Fcons (Fcons (Qpmem
, make_float (pmem
)), attrs
);
604 /* Pass 1: Count how much storage we need. */
605 for (i
= 0; i
< __crt0_argc
; i
++)
607 cmdline_size
+= strlen (__crt0_argv
[i
]) + 1; /* +1 for blank delim */
608 if (strpbrk (__crt0_argv
[i
], " \t\n\r\v\f"))
611 for (p
= __crt0_argv
[i
]; *p
; p
++)
618 /* Pass 2: Allocate storage and concatenate argv[]. */
619 cmdline
= xmalloc (cmdline_size
+ 1);
620 for (i
= 0, q
= cmdline
; i
< __crt0_argc
; i
++)
622 if (strpbrk (__crt0_argv
[i
], " \t\n\r\v\f"))
625 for (p
= __crt0_argv
[i
]; *p
; p
++)
635 strcpy (q
, __crt0_argv
[i
]);
636 q
+= strlen (__crt0_argv
[i
]);
640 /* Remove the trailing blank. */
644 /* Command line is encoded in locale-coding-system; decode it. */
645 cmd_str
= make_unibyte_string (cmdline
, strlen (cmdline
));
646 decoded_cmd
= code_convert_string_norecord (cmd_str
,
647 Vlocale_coding_system
, 0);
649 attrs
= Fcons (Fcons (Qargs
, decoded_cmd
), attrs
);
658 struct tty_display_info
*tty
;
660 #ifndef HAVE_X_WINDOWS
661 restore_parent_vm_title ();
663 /* Make sure the termscript file is committed, in case we are
664 crashing and some vital info was written there. */
665 if (FRAMEP (selected_frame
))
667 struct frame
*sf
= XFRAME (selected_frame
);
669 if (FRAME_LIVE_P (sf
)
670 && (FRAME_MSDOS_P (sf
) || FRAME_TERMCAP_P (sf
)))
675 fflush (tty
->termscript
);
676 fsync (fileno (tty
->termscript
));
686 syms_of_dosfns (void)
689 defsubr (&Sdos_memget
);
690 defsubr (&Sdos_memput
);
691 defsubr (&Smsdos_mouse_init
);
692 defsubr (&Smsdos_mouse_enable
);
693 defsubr (&Smsdos_set_keyboard
);
694 defsubr (&Sinsert_startup_screen
);
695 defsubr (&Smsdos_mouse_disable
);
696 defsubr (&Sfile_system_info
);
697 #ifndef HAVE_X_WINDOWS
698 defsubr (&Smsdos_mouse_p
);
701 DEFVAR_INT ("dos-country-code", &dos_country_code
,
702 doc
: /* The country code returned by Dos when Emacs was started.
703 Usually this is the international telephone prefix. */);
705 DEFVAR_INT ("dos-codepage", &dos_codepage
,
706 doc
: /* The codepage active when Emacs was started.
707 The following are known:
709 850 Multilingual (Latin I)
710 852 Slavic (Latin II)
715 865 Norway/Denmark */);
717 DEFVAR_INT ("dos-timezone-offset", &dos_timezone_offset
,
718 doc
: /* The current timezone offset to UTC in minutes.
719 Implicitly modified when the TZ variable is changed. */);
721 DEFVAR_LISP ("dos-version", &Vdos_version
,
722 doc
: /* The (MAJOR . MINOR) Dos version (subject to modification with setver). */);
724 #ifndef HAVE_X_WINDOWS
725 DEFVAR_LISP ("dos-windows-version", &Vdos_windows_version
,
726 doc
: /* The (MAJOR . MINOR) Windows version for DOS session on MS-Windows. */);
729 DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes
,
730 doc
: /* *Controls whether DOS raw keyboard events are displayed as you type.
731 When non-nil, the keyboard scan-codes are displayed at the bottom right
732 corner of the display (typically at the end of the mode line).
733 The output format is: scan code:char code*modifiers. */);
735 Vdos_display_scancodes
= Qnil
;
737 DEFVAR_INT ("dos-hyper-key", &dos_hyper_key
,
738 doc
: /* *If set to 1, use right ALT key as hyper key.
739 If set to 2, use right CTRL key as hyper key. */);
742 DEFVAR_INT ("dos-super-key", &dos_super_key
,
743 doc
: /* *If set to 1, use right ALT key as super key.
744 If set to 2, use right CTRL key as super key. */);
747 DEFVAR_INT ("dos-keypad-mode", &dos_keypad_mode
,
748 doc
: /* *Controls what key code is returned by a key in the numeric keypad.
749 The `numlock ON' action is only taken if no modifier keys are pressed.
750 The value is an integer constructed by adding the following bits together:
752 0x00 Digit key returns digit (if numlock ON)
753 0x01 Digit key returns kp-digit (if numlock ON)
754 0x02 Digit key returns M-digit (if numlock ON)
755 0x03 Digit key returns edit key (if numlock ON)
757 0x00 Grey key returns char (if numlock ON)
758 0x04 Grey key returns kp-key (if numlock ON)
760 0x00 Digit key returns digit (if numlock OFF)
761 0x10 Digit key returns kp-digit (if numlock OFF)
762 0x20 Digit key returns M-digit (if numlock OFF)
763 0x30 Digit key returns edit key (if numlock OFF)
765 0x00 Grey key returns char (if numlock OFF)
766 0x40 Grey key returns kp-key (if numlock OFF)
768 0x200 ALT-0..ALT-9 in top-row produces shifted codes. */);
769 dos_keypad_mode
= 0x75;
771 DEFVAR_INT ("dos-keyboard-layout", &dos_keyboard_layout
,
772 doc
: /* Contains the country code for the current keyboard layout.
773 Use msdos-set-keyboard to select another keyboard layout. */);
774 dos_keyboard_layout
= 1; /* US */
776 DEFVAR_INT ("dos-decimal-point", &dos_decimal_point
,
777 doc
: /* The character to produce when kp-decimal key is pressed.
778 If non-zero, this variable contains the character to be returned when the
779 decimal point key in the numeric keypad is pressed when Num Lock is on.
780 If zero, the decimal point key returns the country code specific value. */);
781 dos_decimal_point
= 0;
785 /* arch-tag: f5ea8847-a014-42c9-83f5-7738ad640b17
786 (do not change this comment) */