1994-01-08 09:22:50 +00:00
|
|
|
|
/* MS-DOS specific Lisp utilities. Coded by Manabu Higashida, 1991.
|
|
|
|
|
Major changes May-July 1993 Morten Welinder (only 10% original code left)
|
1997-08-11 21:42:39 +00:00
|
|
|
|
Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1995-01-20 23:40:03 +00:00
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1994-01-08 09:22:50 +00:00
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU Emacs; see the file COPYING. If not, write to
|
1996-01-15 09:18:04 +00:00
|
|
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
|
1994-02-17 20:05:33 +00:00
|
|
|
|
#include <config.h>
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
#ifdef MSDOS
|
|
|
|
|
/* The entire file is within this conditional */
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-07-30 08:15:13 +00:00
|
|
|
|
#include <string.h>
|
1994-01-08 09:22:50 +00:00
|
|
|
|
#include <dos.h>
|
|
|
|
|
#include "lisp.h"
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
#include "termchar.h"
|
|
|
|
|
#include "termhooks.h"
|
|
|
|
|
#include "frame.h"
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#include "blockinput.h"
|
|
|
|
|
#include "window.h"
|
1994-01-08 09:22:50 +00:00
|
|
|
|
#include "dosfns.h"
|
|
|
|
|
#include "msdos.h"
|
1999-07-30 08:15:13 +00:00
|
|
|
|
#include "dispextern.h"
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#include <dpmi.h>
|
1995-10-11 15:12:35 +00:00
|
|
|
|
#include <go32.h>
|
1996-05-13 01:28:24 +00:00
|
|
|
|
#include <dirent.h>
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#ifndef __DJGPP_MINOR__
|
|
|
|
|
# define __tb _go32_info_block.linear_address_of_transfer_buffer;
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-08 09:22:50 +00:00
|
|
|
|
DEFUN ("int86", Fint86, Sint86, 2, 2, 0,
|
|
|
|
|
"Call specific MSDOS interrupt number INTERRUPT with REGISTERS.\n\
|
|
|
|
|
Return the updated REGISTER vector.\n\
|
|
|
|
|
\n\
|
|
|
|
|
INTERRUPT should be an integer in the range 0 to 255.\n\
|
|
|
|
|
REGISTERS should be a vector produced by `make-register' and\n\
|
|
|
|
|
`set-register-value'.")
|
1996-01-09 00:31:26 +00:00
|
|
|
|
(interrupt, registers)
|
|
|
|
|
Lisp_Object interrupt, registers;
|
1994-01-08 09:22:50 +00:00
|
|
|
|
{
|
|
|
|
|
register int i;
|
|
|
|
|
int no;
|
|
|
|
|
union REGS inregs, outregs;
|
|
|
|
|
Lisp_Object val;
|
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
CHECK_NUMBER (interrupt, 0);
|
|
|
|
|
no = (unsigned long) XINT (interrupt);
|
|
|
|
|
CHECK_VECTOR (registers, 1);
|
|
|
|
|
if (no < 0 || no > 0xff || XVECTOR (registers)-> size != 8)
|
1994-01-08 09:22:50 +00:00
|
|
|
|
return Qnil;
|
|
|
|
|
for (i = 0; i < 8; i++)
|
1996-01-09 00:31:26 +00:00
|
|
|
|
CHECK_NUMBER (XVECTOR (registers)->contents[i], 1);
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
inregs.x.ax = (unsigned long) XFASTINT (XVECTOR (registers)->contents[0]);
|
|
|
|
|
inregs.x.bx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[1]);
|
|
|
|
|
inregs.x.cx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[2]);
|
|
|
|
|
inregs.x.dx = (unsigned long) XFASTINT (XVECTOR (registers)->contents[3]);
|
|
|
|
|
inregs.x.si = (unsigned long) XFASTINT (XVECTOR (registers)->contents[4]);
|
|
|
|
|
inregs.x.di = (unsigned long) XFASTINT (XVECTOR (registers)->contents[5]);
|
|
|
|
|
inregs.x.cflag = (unsigned long) XFASTINT (XVECTOR (registers)->contents[6]);
|
|
|
|
|
inregs.x.flags = (unsigned long) XFASTINT (XVECTOR (registers)->contents[7]);
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
int86 (no, &inregs, &outregs);
|
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
XVECTOR (registers)->contents[0] = make_number (outregs.x.ax);
|
|
|
|
|
XVECTOR (registers)->contents[1] = make_number (outregs.x.bx);
|
|
|
|
|
XVECTOR (registers)->contents[2] = make_number (outregs.x.cx);
|
|
|
|
|
XVECTOR (registers)->contents[3] = make_number (outregs.x.dx);
|
|
|
|
|
XVECTOR (registers)->contents[4] = make_number (outregs.x.si);
|
|
|
|
|
XVECTOR (registers)->contents[5] = make_number (outregs.x.di);
|
|
|
|
|
XVECTOR (registers)->contents[6] = make_number (outregs.x.cflag);
|
|
|
|
|
XVECTOR (registers)->contents[7] = make_number (outregs.x.flags);
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
return registers;
|
1994-01-08 09:22:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
DEFUN ("msdos-memget", Fdos_memget, Sdos_memget, 2, 2, 0,
|
|
|
|
|
"Read DOS memory at offset ADDRESS into VECTOR.\n\
|
|
|
|
|
Return the updated VECTOR.")
|
1996-01-09 00:31:26 +00:00
|
|
|
|
(address, vector)
|
|
|
|
|
Lisp_Object address, vector;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
{
|
|
|
|
|
register int i;
|
|
|
|
|
int offs, len;
|
|
|
|
|
char *buf;
|
|
|
|
|
Lisp_Object val;
|
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
CHECK_NUMBER (address, 0);
|
|
|
|
|
offs = (unsigned long) XINT (address);
|
|
|
|
|
CHECK_VECTOR (vector, 1);
|
|
|
|
|
len = XVECTOR (vector)-> size;
|
|
|
|
|
if (len < 1 || len > 2048 || address < 0 || address > 0xfffff - len)
|
1995-10-11 15:12:35 +00:00
|
|
|
|
return Qnil;
|
|
|
|
|
buf = alloca (len);
|
|
|
|
|
dosmemget (offs, len, buf);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
1996-01-09 00:31:26 +00:00
|
|
|
|
XVECTOR (vector)->contents[i] = make_number (buf[i]);
|
1995-10-11 15:12:35 +00:00
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
return vector;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-memput", Fdos_memput, Sdos_memput, 2, 2, 0,
|
|
|
|
|
"Write DOS memory at offset ADDRESS from VECTOR.")
|
1996-01-09 00:31:26 +00:00
|
|
|
|
(address, vector)
|
|
|
|
|
Lisp_Object address, vector;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
{
|
|
|
|
|
register int i;
|
|
|
|
|
int offs, len;
|
|
|
|
|
char *buf;
|
|
|
|
|
Lisp_Object val;
|
|
|
|
|
|
1996-01-09 00:31:26 +00:00
|
|
|
|
CHECK_NUMBER (address, 0);
|
|
|
|
|
offs = (unsigned long) XINT (address);
|
|
|
|
|
CHECK_VECTOR (vector, 1);
|
|
|
|
|
len = XVECTOR (vector)-> size;
|
|
|
|
|
if (len < 1 || len > 2048 || address < 0 || address > 0xfffff - len)
|
1995-10-11 15:12:35 +00:00
|
|
|
|
return Qnil;
|
|
|
|
|
buf = alloca (len);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
|
{
|
1996-01-09 00:31:26 +00:00
|
|
|
|
CHECK_NUMBER (XVECTOR (vector)->contents[i], 1);
|
|
|
|
|
buf[i] = (unsigned char) XFASTINT (XVECTOR (vector)->contents[i]) & 0xFF;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dosmemput (buf, len, offs);
|
|
|
|
|
return Qt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-set-keyboard", Fmsdos_set_keyboard, Smsdos_set_keyboard, 1, 2, 0,
|
1996-01-09 00:31:26 +00:00
|
|
|
|
"Set keyboard layout according to COUNTRY-CODE.\n\
|
1995-10-11 15:12:35 +00:00
|
|
|
|
If the optional argument ALLKEYS is non-nil, the keyboard is mapped for\n\
|
|
|
|
|
all keys; otherwise it is only used when the ALT key is pressed.\n\
|
|
|
|
|
The current keyboard layout is available in dos-keyboard-code.")
|
|
|
|
|
(country_code, allkeys)
|
|
|
|
|
Lisp_Object country_code;
|
|
|
|
|
{
|
|
|
|
|
CHECK_NUMBER (country_code, 0);
|
|
|
|
|
if (!dos_set_keyboard (XINT (country_code), !NILP (allkeys)))
|
|
|
|
|
return Qnil;
|
|
|
|
|
return Qt;
|
|
|
|
|
}
|
|
|
|
|
|
1994-10-17 08:42:36 +00:00
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
/* Later we might want to control the mouse interface with this function,
|
|
|
|
|
e.g., with respect to non-80 column screen modes. */
|
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-mouse-p", Fmsdos_mouse_p, Smsdos_mouse_p, 0, 0, 0, "\
|
|
|
|
|
Report whether a mouse is present.")
|
|
|
|
|
()
|
|
|
|
|
{
|
|
|
|
|
if (have_mouse)
|
|
|
|
|
return Qt;
|
|
|
|
|
else
|
|
|
|
|
return Qnil;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1995-09-02 16:23:53 +00:00
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-mouse-init", Fmsdos_mouse_init, Smsdos_mouse_init, 0, 0, "",
|
|
|
|
|
"Initialize and enable mouse if available.")
|
|
|
|
|
()
|
|
|
|
|
{
|
1995-10-11 15:12:35 +00:00
|
|
|
|
if (have_mouse)
|
|
|
|
|
{
|
|
|
|
|
have_mouse = 1;
|
|
|
|
|
mouse_init ();
|
|
|
|
|
return Qt;
|
|
|
|
|
}
|
1995-09-02 16:23:53 +00:00
|
|
|
|
return Qnil;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-mouse-enable", Fmsdos_mouse_enable, Smsdos_mouse_enable, 0, 0, "",
|
|
|
|
|
"Enable mouse if available.")
|
|
|
|
|
()
|
|
|
|
|
{
|
|
|
|
|
if (have_mouse)
|
|
|
|
|
{
|
1995-10-11 15:12:35 +00:00
|
|
|
|
have_mouse = 1;
|
|
|
|
|
mouse_on ();
|
1995-09-02 16:23:53 +00:00
|
|
|
|
}
|
|
|
|
|
return have_mouse ? Qt : Qnil;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFUN ("msdos-mouse-disable", Fmsdos_mouse_disable, Smsdos_mouse_disable, 0, 0, "",
|
|
|
|
|
"Disable mouse if available.")
|
|
|
|
|
()
|
|
|
|
|
{
|
|
|
|
|
mouse_off ();
|
|
|
|
|
if (have_mouse) have_mouse = -1;
|
|
|
|
|
return Qnil;
|
|
|
|
|
}
|
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
DEFUN ("insert-startup-screen", Finsert_startup_screen, Sinsert_startup_screen, 0, 0, "", "\
|
|
|
|
|
Insert copy of screen contents prior to starting emacs.\n\
|
|
|
|
|
Return nil if startup screen is not available.")
|
|
|
|
|
()
|
|
|
|
|
{
|
|
|
|
|
char *s;
|
|
|
|
|
int rows, cols;
|
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
|
|
if (!dos_get_saved_screen (&s, &rows, &cols))
|
|
|
|
|
return Qnil;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < rows; i++)
|
|
|
|
|
{
|
|
|
|
|
for (j = 0; j < cols; j++)
|
|
|
|
|
{
|
1997-08-11 00:20:31 +00:00
|
|
|
|
insert_char (*s);
|
1995-10-11 15:12:35 +00:00
|
|
|
|
s += 2;
|
|
|
|
|
}
|
1997-08-11 00:20:31 +00:00
|
|
|
|
insert_char ('\n');
|
1995-10-11 15:12:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Qt;
|
|
|
|
|
}
|
1994-10-17 08:42:36 +00:00
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
/* country info */
|
1994-01-08 09:22:50 +00:00
|
|
|
|
int dos_country_code;
|
|
|
|
|
int dos_codepage;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
int dos_timezone_offset;
|
|
|
|
|
int dos_decimal_point;
|
|
|
|
|
int dos_keyboard_layout;
|
|
|
|
|
unsigned char dos_country_info[DOS_COUNTRY_INFO];
|
1997-08-11 21:42:39 +00:00
|
|
|
|
static unsigned char usa_country_info[DOS_COUNTRY_INFO] = {
|
|
|
|
|
0, 0, /* date format */
|
|
|
|
|
'$', 0, 0, 0, 0, /* currency string */
|
|
|
|
|
',', 0, /* thousands separator */
|
|
|
|
|
'.', 0, /* decimal separator */
|
|
|
|
|
'/', 0, /* date separator */
|
|
|
|
|
':', 0, /* time separator */
|
|
|
|
|
0, /* currency format */
|
|
|
|
|
2, /* digits after decimal in currency */
|
|
|
|
|
0, /* time format */
|
|
|
|
|
0, 0, 0, 0, /* address of case map routine, GPF if used */
|
|
|
|
|
' ', 0, /* data-list separator (?) */
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */
|
|
|
|
|
};
|
1995-10-11 15:12:35 +00:00
|
|
|
|
|
|
|
|
|
int dos_hyper_key;
|
|
|
|
|
int dos_super_key;
|
|
|
|
|
int dos_keypad_mode;
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
Lisp_Object Vdos_version;
|
|
|
|
|
Lisp_Object Vdos_display_scancodes;
|
1997-10-13 16:21:52 +00:00
|
|
|
|
|
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
static unsigned dos_windows_version;
|
|
|
|
|
Lisp_Object Vdos_windows_version;
|
|
|
|
|
|
|
|
|
|
char parent_vm_title[50]; /* Ralf Brown says 30 is enough */
|
|
|
|
|
int w95_set_virtual_machine_title (const char *);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
restore_parent_vm_title (void)
|
|
|
|
|
{
|
|
|
|
|
if (NILP (Vdos_windows_version))
|
|
|
|
|
return;
|
|
|
|
|
if ((dos_windows_version & 0xff) >= 4 && parent_vm_title[0])
|
|
|
|
|
w95_set_virtual_machine_title (parent_vm_title);
|
|
|
|
|
delay (50);
|
|
|
|
|
}
|
|
|
|
|
#endif /* !HAVE_X_WINDOWS */
|
1995-10-11 15:12:35 +00:00
|
|
|
|
|
1994-01-08 09:22:50 +00:00
|
|
|
|
void
|
|
|
|
|
init_dosfns ()
|
|
|
|
|
{
|
|
|
|
|
union REGS regs;
|
|
|
|
|
_go32_dpmi_registers dpmiregs;
|
1997-08-11 21:42:39 +00:00
|
|
|
|
unsigned long xbuf = _go32_info_block.linear_address_of_transfer_buffer;
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
1994-10-17 08:42:36 +00:00
|
|
|
|
#ifndef SYSTEM_MALLOC
|
1994-01-08 09:22:50 +00:00
|
|
|
|
get_lim_data (); /* why the hell isn't this called elsewhere? */
|
1994-10-17 08:42:36 +00:00
|
|
|
|
#endif
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
regs.x.ax = 0x3000;
|
|
|
|
|
intdos (®s, ®s);
|
|
|
|
|
Vdos_version = Fcons (make_number (regs.h.al), make_number (regs.h.ah));
|
|
|
|
|
|
1997-08-11 21:42:39 +00:00
|
|
|
|
/* Obtain the country code via DPMI, use DJGPP transfer buffer. */
|
|
|
|
|
dpmiregs.x.ax = 0x3800;
|
1998-04-08 13:48:30 +00:00
|
|
|
|
dpmiregs.x.ds = xbuf >> 4;
|
1997-08-11 21:42:39 +00:00
|
|
|
|
dpmiregs.x.dx = 0;
|
|
|
|
|
dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0;
|
|
|
|
|
_go32_dpmi_simulate_int (0x21, &dpmiregs);
|
|
|
|
|
if (dpmiregs.x.flags & 1)
|
|
|
|
|
{
|
|
|
|
|
dos_country_code = 1; /* assume USA if 213800 failed */
|
|
|
|
|
memcpy (dos_country_info, usa_country_info, DOS_COUNTRY_INFO);
|
|
|
|
|
}
|
1994-01-08 09:22:50 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dos_country_code = dpmiregs.x.bx;
|
1997-08-11 21:42:39 +00:00
|
|
|
|
dosmemget (xbuf, DOS_COUNTRY_INFO, dos_country_info);
|
1994-01-08 09:22:50 +00:00
|
|
|
|
}
|
1997-08-11 21:42:39 +00:00
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
dos_set_keyboard (dos_country_code, 0);
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
regs.x.ax = 0x6601;
|
|
|
|
|
intdos (®s, ®s);
|
|
|
|
|
if (regs.x.cflag)
|
|
|
|
|
/* Estimate code page from country code */
|
|
|
|
|
switch (dos_country_code)
|
|
|
|
|
{
|
|
|
|
|
case 45: /* Denmark */
|
|
|
|
|
case 47: /* Norway */
|
|
|
|
|
dos_codepage = 865;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* US */
|
|
|
|
|
dos_codepage = 437;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
dos_codepage = regs.x.bx & 0xffff;
|
1996-05-13 01:28:24 +00:00
|
|
|
|
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
parent_vm_title[0] = '\0';
|
|
|
|
|
|
|
|
|
|
/* If we are running from DOS box on MS-Windows, get Windows version. */
|
|
|
|
|
dpmiregs.x.ax = 0x1600; /* enhanced mode installation check */
|
|
|
|
|
dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0;
|
|
|
|
|
_go32_dpmi_simulate_int (0x2f, &dpmiregs);
|
|
|
|
|
/* We only support Windows-specific features when we run on Windows 9X
|
|
|
|
|
or on Windows 3.X/enhanced mode.
|
|
|
|
|
|
|
|
|
|
Int 2Fh/AX=1600h returns:
|
|
|
|
|
|
|
|
|
|
AL = 00: no Windows at all;
|
|
|
|
|
AL = 01: Windows/386 2.x;
|
|
|
|
|
AL = 80h: Windows 3.x in mode other than enhanced;
|
|
|
|
|
AL = FFh: Windows/386 2.x
|
|
|
|
|
|
|
|
|
|
We also check AH > 0 (Windows 3.1 or later), in case AL tricks us. */
|
|
|
|
|
if (dpmiregs.h.al > 2 && dpmiregs.h.al != 0x80 && dpmiregs.h.al != 0xff
|
|
|
|
|
&& (dpmiregs.h.al > 3 || dpmiregs.h.ah > 0))
|
|
|
|
|
{
|
|
|
|
|
dos_windows_version = dpmiregs.x.ax;
|
|
|
|
|
Vdos_windows_version =
|
|
|
|
|
Fcons (make_number (dpmiregs.h.al), make_number (dpmiregs.h.ah));
|
|
|
|
|
|
|
|
|
|
/* Save the current title of this virtual machine, so we can restore
|
|
|
|
|
it before exiting. Otherwise, Windows 95 will continue to use
|
|
|
|
|
the title we set even after we are history, stupido... */
|
|
|
|
|
if (dpmiregs.h.al >= 4)
|
|
|
|
|
{
|
|
|
|
|
dpmiregs.x.ax = 0x168e;
|
|
|
|
|
dpmiregs.x.dx = 3; /* get VM title */
|
|
|
|
|
dpmiregs.x.cx = sizeof(parent_vm_title) - 1;
|
|
|
|
|
dpmiregs.x.es = __tb >> 4;
|
|
|
|
|
dpmiregs.x.di = __tb & 15;
|
|
|
|
|
dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0;
|
|
|
|
|
_go32_dpmi_simulate_int (0x2f, &dpmiregs);
|
|
|
|
|
if (dpmiregs.x.ax == 1)
|
|
|
|
|
dosmemget (__tb, sizeof(parent_vm_title), parent_vm_title);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dos_windows_version = 0;
|
|
|
|
|
Vdos_windows_version = Qnil;
|
|
|
|
|
}
|
|
|
|
|
#endif /* !HAVE_X_WINDOWS */
|
|
|
|
|
|
1996-05-13 01:28:24 +00:00
|
|
|
|
#if __DJGPP__ >= 2
|
|
|
|
|
|
1996-09-25 22:39:43 +00:00
|
|
|
|
/* Without this, we never see hidden files.
|
|
|
|
|
Don't OR it with the previous value, so the value recorded at dump
|
|
|
|
|
time, possibly with `preserve-case' flags set, won't get through. */
|
|
|
|
|
__opendir_flags = __OPENDIR_FIND_HIDDEN;
|
|
|
|
|
|
|
|
|
|
#if __DJGPP_MINOR__ == 0
|
|
|
|
|
/* Under LFN, preserve the case of files as recorded in the directory
|
|
|
|
|
(in DJGPP 2.01 and later this is automagically done by the library). */
|
1996-05-13 01:28:24 +00:00
|
|
|
|
if (!NILP (Fmsdos_long_file_names ()))
|
|
|
|
|
__opendir_flags |= __OPENDIR_PRESERVE_CASE;
|
1996-09-25 22:39:43 +00:00
|
|
|
|
#endif /* __DJGPP_MINOR__ == 0 */
|
|
|
|
|
#endif /* __DJGPP__ >= 2 */
|
1994-01-08 09:22:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
1999-07-30 08:15:13 +00:00
|
|
|
|
|
|
|
|
|
/* Emulation of some X window features from xfns.c and xfaces.c. */
|
|
|
|
|
|
|
|
|
|
/* Standard VGA colors, in the order of their standard numbering
|
|
|
|
|
in the default VGA palette. */
|
|
|
|
|
static char *vga_colors[16] = {
|
|
|
|
|
"black", "blue", "green", "cyan", "red", "magenta", "brown",
|
|
|
|
|
"lightgray", "darkgray", "lightblue", "lightgreen", "lightcyan",
|
|
|
|
|
"lightred", "lightmagenta", "yellow", "white"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Given a color name, return its index, or -1 if not found. Note
|
|
|
|
|
that this only performs case-insensitive comparison against the
|
|
|
|
|
standard names. For anything more sophisticated, like matching
|
|
|
|
|
"gray" with "grey" or translating X color names into their MSDOS
|
Changes for automatic remapping of X colors on terminal frames:
* xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X
frames.
(Vface_tty_color_alist): Remove.
(tty_defined_color): New function.
(defined_color): Rewrite to support any type of frame.
(tty_color_name): New function.
(face_color_supported_p, Fface_color_gray_p,
Fface_color_supported_p): Support non-X frames.
(load_color): Enclose the color name in quotes, in the log
messages. Remove DOS-specific version of load_color.
(realize_tty_face): Take the supported colors from
tty-color-alist. Support translation of X colors to the closest
tty color, for both MSDOS and tty frames.
[MSDOS]: Don't invert face colors if they were taken from the
frame colors.
(Fface_register_tty_color, Fface_clear_tty_colors): Remove.
* frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]:
Define a mostly empty surrogate.
(tty_display): Declare.
* frame.c (make_terminal_frame) [!macintosh]: Don't use
tty_display.
(Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P
frames when the frame's param_alist includes 'reverse.
(tty_display): Define.
(make_terminal_frame) [!MSDOS]: Assign &tty_display to the
output_data.x member.
(Fframe_parameters): Return foreground and background color names
on tty frames as well, in addition to MSDOS frames.
* msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object
selected_frame.
(struct x_output): Remove unused members; document who uses each
member.
(FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE,
FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES,
FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES,
FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove
unused macro definintions.
* msdos.c (IT_set_frame_parameters): Don't call
recompute_basic_faces, the next redisplay will, anyway.
(x_current_display): Remove unused variable.
Many functions: changes for Lisp_object selected_frame.
(IT_set_face): If the tty_reverse_p flag is set for the face,
reverse the foreground and background colors.
(Fmsdos_remember_default_colors): New function.
(syms_of_msdos): Defsubr it.
(IT_set_frame_parameters): Use initial_screen_colors[] when
creating a new frame. If the frame parameters include 'reverse,
swap the foreground and background colors.
(internal_terminal_init): Initialize initial_screen_colors to -1.
(syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up
cus-start.el.
* Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc.
* xfns.c (x_defined_color): Rename from defined_color. All
callers changed.
(Fxw_color_defined_p): Renamed from Fx_color_defined_p;
all callers changed.
(Fxw_color_values): Renamed from Fx_color_values; all callers
changed.
(Fxw_display_color_p): Renamed from Fx_display_color_p; all
callers changed.
(x_window_to_frame, x_any_window_to_frame,
x_non_menubar_window_to_frame, x_menubar_window_to_frame,
x_top_window_to_frame): Use !FRAME_X_P instead of
f->output_data.nothing.
* xterm.h (x_defined_color): Rename from defined_color.
* w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of
f->output_data.nothing.
(Fxw_color_defined_p): Renamed from Fx_color_defined_p;
all callers changed.
(Fxw_color_values): Renamed from Fx_color_values; all callers
changed.
(Fxw_display_color_p): Renamed from Fx_display_color_p; all
callers changed.
* dispextern.h (tty_color_name): Add prototype.
* xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of
f->output_data.nothing.
* w32menu.c (menubar_id_to_frame): Likewise.
* w32term.h (w32_output): Declare.
* dosfns.c (Qmsdos_color_translate): Remove.
(msdos_stdcolor_name): Now returns a Lisp_Object.
* dosfns.h (Qmsdos_color_translate): Remove.
* s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
1999-12-06 16:54:09 +00:00
|
|
|
|
equivalents, call the Lisp function Qtty_color_desc (defined
|
|
|
|
|
on lisp/term/tty-colors.el). */
|
1999-07-30 08:15:13 +00:00
|
|
|
|
int
|
|
|
|
|
msdos_stdcolor_idx (const char *name)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof (vga_colors) / sizeof (vga_colors[0]); i++)
|
|
|
|
|
if (strcasecmp (name, vga_colors[i]) == 0)
|
|
|
|
|
return i;
|
|
|
|
|
|
Changes for separate unspecified foreground and background colors
on character terminals:
* dispextern.h (FACE_TTY_DEFAULT_FG_COLOR)
(FACE_TTY_DEFAULT_BG_COLOR): New macros.
* xfaces.c (Qunspecified_fg, Qunspecified_bg): New variables.
(syms_of_xfaces): Initialize and staticpro them.
(tty_defined_color): If the color name is unspecified-fg or
unspecified-bg, return FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, respectively, as the pixel value.
(tty_color_name): If the color pixel value is either
FACE_TTY_DEFAULT_FG_COLOR or FACE_TTY_DEFAULT_BG_COLOR, return
Qunspecified_fg or Qunspecified_bg, respectively.
(Finternal_set_lisp_face_attribute): Allow values Qunspecified_fg
and Qunspecified_bg for foreground and background colors.
(realize_default_face): If the foreground and background colors
are not specified, default to Qunspecified_fg and Qunspecified_bg.
(realize_tty_face): By default, set the face colors to
FACE_TTY_DEFAULT_FG_COLOR and FACE_TTY_DEFAULT_BG_COLOR.
[MSDOS]: Handle FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR when face colors are not defined.
Reverse the colors if the default colors were reversed.
* dispnew.c (init_display): Initialize the frame pixels of the
initial frame to FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR.
* term.c (turn_on_face): If the default fore- and background
colors are reversed, enter inverse video mode. Don't send color
escape sequences for unspecified foreground and background colors.
(turn_off_face): Handle unspecified-fg and unspecified-bg colors.
* dosfns.c (unspecified_colors): New variable.
(msdos_stdcolor_idx): Handle unspecified-fg and unspecified-bg
color names, return FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, respectively.
(msdos_stdcolor_name): Handle FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, return Qunspecified_fg and
Qunspecified_bg, respectively.
* msdos.c (IT_set_face): Support FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR as pixel values.
* faces.el (face-read-integer, read-face-attribute)
(color-defined-p, color-values): Allow color values unspecified-fg
and unspecified-bg, handle them as unspecified.
1999-12-15 13:14:38 +00:00
|
|
|
|
return
|
2000-01-03 16:56:40 +00:00
|
|
|
|
strcmp (name, unspecified_fg) == 0 ? FACE_TTY_DEFAULT_FG_COLOR
|
|
|
|
|
: strcmp (name, unspecified_bg) == 0 ? FACE_TTY_DEFAULT_BG_COLOR
|
Changes for separate unspecified foreground and background colors
on character terminals:
* dispextern.h (FACE_TTY_DEFAULT_FG_COLOR)
(FACE_TTY_DEFAULT_BG_COLOR): New macros.
* xfaces.c (Qunspecified_fg, Qunspecified_bg): New variables.
(syms_of_xfaces): Initialize and staticpro them.
(tty_defined_color): If the color name is unspecified-fg or
unspecified-bg, return FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, respectively, as the pixel value.
(tty_color_name): If the color pixel value is either
FACE_TTY_DEFAULT_FG_COLOR or FACE_TTY_DEFAULT_BG_COLOR, return
Qunspecified_fg or Qunspecified_bg, respectively.
(Finternal_set_lisp_face_attribute): Allow values Qunspecified_fg
and Qunspecified_bg for foreground and background colors.
(realize_default_face): If the foreground and background colors
are not specified, default to Qunspecified_fg and Qunspecified_bg.
(realize_tty_face): By default, set the face colors to
FACE_TTY_DEFAULT_FG_COLOR and FACE_TTY_DEFAULT_BG_COLOR.
[MSDOS]: Handle FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR when face colors are not defined.
Reverse the colors if the default colors were reversed.
* dispnew.c (init_display): Initialize the frame pixels of the
initial frame to FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR.
* term.c (turn_on_face): If the default fore- and background
colors are reversed, enter inverse video mode. Don't send color
escape sequences for unspecified foreground and background colors.
(turn_off_face): Handle unspecified-fg and unspecified-bg colors.
* dosfns.c (unspecified_colors): New variable.
(msdos_stdcolor_idx): Handle unspecified-fg and unspecified-bg
color names, return FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, respectively.
(msdos_stdcolor_name): Handle FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR, return Qunspecified_fg and
Qunspecified_bg, respectively.
* msdos.c (IT_set_face): Support FACE_TTY_DEFAULT_FG_COLOR and
FACE_TTY_DEFAULT_BG_COLOR as pixel values.
* faces.el (face-read-integer, read-face-attribute)
(color-defined-p, color-values): Allow color values unspecified-fg
and unspecified-bg, handle them as unspecified.
1999-12-15 13:14:38 +00:00
|
|
|
|
: FACE_TTY_DEFAULT_COLOR;
|
1999-07-30 08:15:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a color index, return its standard name. */
|
Changes for automatic remapping of X colors on terminal frames:
* xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X
frames.
(Vface_tty_color_alist): Remove.
(tty_defined_color): New function.
(defined_color): Rewrite to support any type of frame.
(tty_color_name): New function.
(face_color_supported_p, Fface_color_gray_p,
Fface_color_supported_p): Support non-X frames.
(load_color): Enclose the color name in quotes, in the log
messages. Remove DOS-specific version of load_color.
(realize_tty_face): Take the supported colors from
tty-color-alist. Support translation of X colors to the closest
tty color, for both MSDOS and tty frames.
[MSDOS]: Don't invert face colors if they were taken from the
frame colors.
(Fface_register_tty_color, Fface_clear_tty_colors): Remove.
* frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]:
Define a mostly empty surrogate.
(tty_display): Declare.
* frame.c (make_terminal_frame) [!macintosh]: Don't use
tty_display.
(Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P
frames when the frame's param_alist includes 'reverse.
(tty_display): Define.
(make_terminal_frame) [!MSDOS]: Assign &tty_display to the
output_data.x member.
(Fframe_parameters): Return foreground and background color names
on tty frames as well, in addition to MSDOS frames.
* msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object
selected_frame.
(struct x_output): Remove unused members; document who uses each
member.
(FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE,
FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES,
FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES,
FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove
unused macro definintions.
* msdos.c (IT_set_frame_parameters): Don't call
recompute_basic_faces, the next redisplay will, anyway.
(x_current_display): Remove unused variable.
Many functions: changes for Lisp_object selected_frame.
(IT_set_face): If the tty_reverse_p flag is set for the face,
reverse the foreground and background colors.
(Fmsdos_remember_default_colors): New function.
(syms_of_msdos): Defsubr it.
(IT_set_frame_parameters): Use initial_screen_colors[] when
creating a new frame. If the frame parameters include 'reverse,
swap the foreground and background colors.
(internal_terminal_init): Initialize initial_screen_colors to -1.
(syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up
cus-start.el.
* Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc.
* xfns.c (x_defined_color): Rename from defined_color. All
callers changed.
(Fxw_color_defined_p): Renamed from Fx_color_defined_p;
all callers changed.
(Fxw_color_values): Renamed from Fx_color_values; all callers
changed.
(Fxw_display_color_p): Renamed from Fx_display_color_p; all
callers changed.
(x_window_to_frame, x_any_window_to_frame,
x_non_menubar_window_to_frame, x_menubar_window_to_frame,
x_top_window_to_frame): Use !FRAME_X_P instead of
f->output_data.nothing.
* xterm.h (x_defined_color): Rename from defined_color.
* w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of
f->output_data.nothing.
(Fxw_color_defined_p): Renamed from Fx_color_defined_p;
all callers changed.
(Fxw_color_values): Renamed from Fx_color_values; all callers
changed.
(Fxw_display_color_p): Renamed from Fx_display_color_p; all
callers changed.
* dispextern.h (tty_color_name): Add prototype.
* xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of
f->output_data.nothing.
* w32menu.c (menubar_id_to_frame): Likewise.
* w32term.h (w32_output): Declare.
* dosfns.c (Qmsdos_color_translate): Remove.
(msdos_stdcolor_name): Now returns a Lisp_Object.
* dosfns.h (Qmsdos_color_translate): Remove.
* s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
1999-12-06 16:54:09 +00:00
|
|
|
|
Lisp_Object
|
1999-07-30 08:15:13 +00:00
|
|
|
|
msdos_stdcolor_name (int idx)
|
|
|
|
|
{
|
2000-01-03 16:56:40 +00:00
|
|
|
|
extern Lisp_Object Qunspecified;
|
|
|
|
|
|
|
|
|
|
if (idx == FACE_TTY_DEFAULT_FG_COLOR)
|
|
|
|
|
return build_string (unspecified_fg);
|
|
|
|
|
else if (idx == FACE_TTY_DEFAULT_BG_COLOR)
|
|
|
|
|
return build_string (unspecified_bg);
|
|
|
|
|
else if (idx >= 0 && idx < sizeof (vga_colors) / sizeof (vga_colors[0]))
|
|
|
|
|
return build_string (vga_colors[idx]);
|
|
|
|
|
else
|
|
|
|
|
return Qunspecified; /* meaning the default */
|
1999-07-30 08:15:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-10-13 16:21:52 +00:00
|
|
|
|
/* Support for features that are available when we run in a DOS box
|
|
|
|
|
on MS-Windows. */
|
|
|
|
|
int
|
|
|
|
|
ms_windows_version (void)
|
|
|
|
|
{
|
|
|
|
|
return dos_windows_version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the title of the current virtual machine, to appear on
|
|
|
|
|
the caption bar of that machine's window. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
w95_set_virtual_machine_title (const char *title_string)
|
|
|
|
|
{
|
|
|
|
|
/* Only Windows 9X (version 4 and higher) support this function. */
|
|
|
|
|
if (!NILP (Vdos_windows_version)
|
|
|
|
|
&& (dos_windows_version & 0xff) >= 4)
|
|
|
|
|
{
|
|
|
|
|
_go32_dpmi_registers regs;
|
|
|
|
|
dosmemput (title_string, strlen (title_string) + 1, __tb);
|
|
|
|
|
regs.x.ax = 0x168e;
|
|
|
|
|
regs.x.dx = 1;
|
|
|
|
|
regs.x.es = __tb >> 4;
|
|
|
|
|
regs.x.di = __tb & 15;
|
|
|
|
|
regs.x.sp = regs.x.ss = regs.x.flags = 0;
|
|
|
|
|
_go32_dpmi_simulate_int (0x2f, ®s);
|
|
|
|
|
return regs.x.ax == 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Change the title of frame F to NAME.
|
|
|
|
|
If NAME is nil, use the frame name as the title.
|
|
|
|
|
|
|
|
|
|
If Emacs is not run from a DOS box on Windows 9X, this only
|
|
|
|
|
sets the name in the frame struct, but has no other effects. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
x_set_title (f, name)
|
|
|
|
|
struct frame *f;
|
|
|
|
|
Lisp_Object name;
|
|
|
|
|
{
|
|
|
|
|
/* Don't change the title if it's already NAME. */
|
|
|
|
|
if (EQ (name, f->title))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
update_mode_lines = 1;
|
|
|
|
|
|
|
|
|
|
f->title = name;
|
|
|
|
|
|
|
|
|
|
if (NILP (name))
|
|
|
|
|
name = f->name;
|
|
|
|
|
|
|
|
|
|
if (FRAME_MSDOS_P (f))
|
|
|
|
|
{
|
|
|
|
|
BLOCK_INPUT;
|
|
|
|
|
w95_set_virtual_machine_title (XSTRING (name)->data);
|
|
|
|
|
UNBLOCK_INPUT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif /* !HAVE_X_WINDOWS */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
dos_cleanup (void)
|
|
|
|
|
{
|
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
restore_parent_vm_title ();
|
|
|
|
|
#endif
|
1998-12-03 09:41:09 +00:00
|
|
|
|
/* Make sure the termscript file is committed, in case we are
|
|
|
|
|
crashing and some vital info was written there. */
|
|
|
|
|
if (termscript)
|
|
|
|
|
{
|
|
|
|
|
fflush (termscript);
|
|
|
|
|
fsync (fileno (termscript));
|
|
|
|
|
}
|
1997-10-13 16:21:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-01-08 09:22:50 +00:00
|
|
|
|
/*
|
|
|
|
|
* Define everything
|
|
|
|
|
*/
|
|
|
|
|
syms_of_dosfns ()
|
|
|
|
|
{
|
|
|
|
|
defsubr (&Sint86);
|
1995-10-11 15:12:35 +00:00
|
|
|
|
defsubr (&Sdos_memget);
|
|
|
|
|
defsubr (&Sdos_memput);
|
1995-09-02 16:23:53 +00:00
|
|
|
|
defsubr (&Smsdos_mouse_init);
|
|
|
|
|
defsubr (&Smsdos_mouse_enable);
|
1995-10-11 15:12:35 +00:00
|
|
|
|
defsubr (&Smsdos_set_keyboard);
|
|
|
|
|
defsubr (&Sinsert_startup_screen);
|
1995-09-02 16:23:53 +00:00
|
|
|
|
defsubr (&Smsdos_mouse_disable);
|
1994-10-17 08:42:36 +00:00
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
defsubr (&Smsdos_mouse_p);
|
|
|
|
|
#endif
|
1994-01-08 09:22:50 +00:00
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-country-code", &dos_country_code,
|
|
|
|
|
"The country code returned by Dos when Emacs was started.\n\
|
|
|
|
|
Usually this is the international telephone prefix.");
|
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-codepage", &dos_codepage,
|
1995-10-11 15:12:35 +00:00
|
|
|
|
"The codepage active when Emacs was started.\n\
|
1994-05-02 07:51:29 +00:00
|
|
|
|
The following are known:\n\
|
|
|
|
|
437 United States\n\
|
|
|
|
|
850 Multilingual (Latin I)\n\
|
|
|
|
|
852 Slavic (Latin II)\n\
|
|
|
|
|
857 Turkish\n\
|
|
|
|
|
860 Portugal\n\
|
|
|
|
|
861 Iceland\n\
|
|
|
|
|
863 Canada (French)\n\
|
1994-01-08 09:22:50 +00:00
|
|
|
|
865 Norway/Denmark");
|
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
DEFVAR_INT ("dos-timezone-offset", &dos_timezone_offset,
|
|
|
|
|
"The current timezone offset to UTC in minutes.
|
|
|
|
|
Implicitly modified when the TZ variable is changed.");
|
|
|
|
|
|
1994-01-08 09:22:50 +00:00
|
|
|
|
DEFVAR_LISP ("dos-version", &Vdos_version,
|
|
|
|
|
"The (MAJOR . MINOR) Dos version (subject to modification with setver).");
|
1995-10-11 15:12:35 +00:00
|
|
|
|
|
1997-10-13 16:21:52 +00:00
|
|
|
|
#ifndef HAVE_X_WINDOWS
|
|
|
|
|
DEFVAR_LISP ("dos-windows-version", &Vdos_windows_version,
|
|
|
|
|
"The (MAJOR . MINOR) Windows version for DOS session on MS-Windows.");
|
|
|
|
|
#endif
|
|
|
|
|
|
1995-10-11 15:12:35 +00:00
|
|
|
|
DEFVAR_LISP ("dos-display-scancodes", &Vdos_display_scancodes,
|
|
|
|
|
"*When non-nil, the keyboard scan-codes are displayed at the bottom right\n\
|
|
|
|
|
corner of the display (typically at the end of the mode line).\n\
|
|
|
|
|
The output format is: scan code:char code*modifiers.");
|
|
|
|
|
Vdos_display_scancodes = Qnil;
|
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-hyper-key", &dos_hyper_key,
|
|
|
|
|
"*If set to 1, use right ALT key as hyper key.\n\
|
|
|
|
|
If set to 2, use right CTRL key as hyper key.");
|
|
|
|
|
dos_hyper_key = 0;
|
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-super-key", &dos_super_key,
|
|
|
|
|
"*If set to 1, use right ALT key as super key.\n\
|
|
|
|
|
If set to 2, use right CTRL key as super key.");
|
|
|
|
|
dos_super_key = 0;
|
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-keypad-mode", &dos_keypad_mode,
|
|
|
|
|
"*Controls what key code is returned by a key in the numeric keypad.\n\
|
|
|
|
|
The `numlock ON' action is only taken if no modifier keys are pressed.\n\
|
|
|
|
|
The value is an integer constructed by adding the following bits together:\n\
|
|
|
|
|
\n\
|
|
|
|
|
0x00 Digit key returns digit (if numlock ON)\n\
|
|
|
|
|
0x01 Digit key returns kp-digit (if numlock ON)\n\
|
|
|
|
|
0x02 Digit key returns M-digit (if numlock ON)\n\
|
|
|
|
|
0x03 Digit key returns edit key (if numlock ON)\n\
|
|
|
|
|
\n\
|
|
|
|
|
0x00 Grey key returns char (if numlock ON)\n\
|
|
|
|
|
0x04 Grey key returns kp-key (if numlock ON)\n\
|
|
|
|
|
\n\
|
|
|
|
|
0x00 Digit key returns digit (if numlock OFF)\n\
|
|
|
|
|
0x10 Digit key returns kp-digit (if numlock OFF)\n\
|
|
|
|
|
0x20 Digit key returns M-digit (if numlock OFF)\n\
|
|
|
|
|
0x30 Digit key returns edit key (if numlock OFF)\n\
|
|
|
|
|
\n\
|
|
|
|
|
0x00 Grey key returns char (if numlock OFF)\n\
|
|
|
|
|
0x40 Grey key returns kp-key (if numlock OFF)\n\
|
|
|
|
|
\n\
|
|
|
|
|
0x200 ALT-0..ALT-9 in top-row produces shifted codes.");
|
1995-11-21 06:51:26 +00:00
|
|
|
|
dos_keypad_mode = 0x75;
|
1995-10-11 15:12:35 +00:00
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-keyboard-layout", &dos_keyboard_layout,
|
|
|
|
|
"Contains the country code for the current keyboard layout.\n\
|
|
|
|
|
Use msdos-set-keyboard to select another keyboard layout.");
|
|
|
|
|
dos_keyboard_layout = 1; /* US */
|
|
|
|
|
|
|
|
|
|
DEFVAR_INT ("dos-decimal-point", &dos_decimal_point,
|
|
|
|
|
"If non-zero, it contains the character to be returned when the\n\
|
|
|
|
|
decimal point key in the numeric keypad is pressed when Num Lock is on.\n\
|
|
|
|
|
If zero, the decimal point key returns the country code specific value.");
|
|
|
|
|
dos_decimal_point = 0;
|
1994-01-08 09:22:50 +00:00
|
|
|
|
}
|
|
|
|
|
#endif /* MSDOS */
|