home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / e20313sr.zip / emacs / 20.3.1 / src / msdos.c < prev    next >
C/C++ Source or Header  |  1999-07-31  |  97KB  |  3,657 lines

  1. /* MS-DOS specific C utilities.          -*- coding: raw-text -*-
  2.    Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20.  
  21. /* Contributed by Morten Welinder */
  22. /* New display, keyboard, and mouse control by Kim F. Storm */
  23.  
  24. /* Note: some of the stuff here was taken from end of sysdep.c in demacs. */
  25.  
  26. #include <config.h>
  27.  
  28. #ifdef MSDOS
  29. #include "lisp.h"
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <sys/param.h>
  33. #include <sys/time.h>
  34. #include <dos.h>
  35. #include <errno.h>
  36. #include <string.h>     /* for bzero and string functions */
  37. #include <sys/stat.h>    /* for _fixpath */
  38. #include <unistd.h>     /* for chdir, dup, dup2, etc. */
  39. #if __DJGPP__ >= 2
  40. #include <fcntl.h>
  41. #include <io.h>         /* for setmode */
  42. #include <dpmi.h>     /* for __dpmi_xxx stuff */
  43. #include <sys/farptr.h>     /* for _farsetsel, _farnspokeb */
  44. #include <libc/dosio.h>  /* for _USE_LFN */
  45. #include <conio.h>     /* for cputs */
  46. #endif
  47.  
  48. #include "dosfns.h"
  49. #include "msdos.h"
  50. #include "systime.h"
  51. #include "termhooks.h"
  52. #include "dispextern.h"
  53. #include "termopts.h"
  54. #include "frame.h"
  55. #include "window.h"
  56. #include "buffer.h"
  57. #include "commands.h"
  58. #include <go32.h>
  59. #include <pc.h>
  60. #include <ctype.h>
  61. /* #include <process.h> */
  62. /* Damn that local process.h!  Instead we can define P_WAIT ourselves.  */
  63. #define P_WAIT 1
  64.  
  65. #ifndef _USE_LFN
  66. #define _USE_LFN 0
  67. #endif
  68.  
  69. #ifndef _dos_ds
  70. #define _dos_ds _go32_info_block.selector_for_linear_memory
  71. #endif
  72.  
  73. #if __DJGPP__ > 1
  74.  
  75. #include <signal.h>
  76. #include "syssignal.h"
  77.  
  78. #ifndef SYSTEM_MALLOC
  79.  
  80. #ifdef GNU_MALLOC
  81.  
  82. /* If other `malloc' than ours is used, force our `sbrk' behave like
  83.    Unix programs expect (resize memory blocks to keep them contiguous).
  84.    If `sbrk' from `ralloc.c' is NOT used, also zero-out sbrk'ed memory,
  85.    because that's what `gmalloc' expects to get.  */
  86. #include <crt0.h>
  87.  
  88. #ifdef REL_ALLOC
  89. int _crt0_startup_flags = _CRT0_FLAG_UNIX_SBRK;
  90. #else  /* not REL_ALLOC */
  91. int _crt0_startup_flags = (_CRT0_FLAG_UNIX_SBRK | _CRT0_FLAG_FILL_SBRK_MEMORY);
  92. #endif /* not REL_ALLOC */
  93. #endif /* GNU_MALLOC */
  94.  
  95. #endif /* not SYSTEM_MALLOC */
  96. #endif /* __DJGPP__ > 1 */
  97.  
  98. static unsigned long
  99. event_timestamp ()
  100. {
  101.   struct time t;
  102.   unsigned long s;
  103.   
  104.   gettime (&t);
  105.   s = t.ti_min;
  106.   s *= 60;
  107.   s += t.ti_sec;
  108.   s *= 1000;
  109.   s += t.ti_hund * 10;
  110.   
  111.   return s;
  112. }
  113.  
  114.  
  115. /* ------------------------ Mouse control ---------------------------
  116.  *
  117.  * Coordinates are in screen positions and zero based.
  118.  * Mouse buttons are numbered from left to right and also zero based.
  119.  */
  120.  
  121. int have_mouse;          /* 0: no, 1: enabled, -1: disabled */
  122. static int mouse_visible;
  123.  
  124. static int mouse_last_x;
  125. static int mouse_last_y;
  126.  
  127. static int mouse_button_translate[NUM_MOUSE_BUTTONS];
  128. static int mouse_button_count;
  129.  
  130. void
  131. mouse_on ()
  132. {
  133.   union REGS regs;
  134.  
  135.   if (have_mouse > 0 && !mouse_visible)
  136.     {
  137.       if (termscript)
  138.     fprintf (termscript, "<M_ON>");
  139.       regs.x.ax = 0x0001;
  140.       int86 (0x33, ®s, ®s);
  141.       mouse_visible = 1;
  142.     }
  143. }
  144.  
  145. void
  146. mouse_off ()
  147. {
  148.   union REGS regs;
  149.  
  150.   if (have_mouse > 0 && mouse_visible)
  151.     {
  152.       if (termscript)
  153.     fprintf (termscript, "<M_OFF>");
  154.       regs.x.ax = 0x0002;
  155.       int86 (0x33, ®s, ®s);
  156.       mouse_visible = 0;
  157.     }
  158. }
  159.  
  160. static void
  161. mouse_get_xy (int *x, int *y)
  162. {
  163.   union REGS regs;
  164.  
  165.   regs.x.ax = 0x0003;
  166.   int86 (0x33, ®s, ®s);
  167.   *x = regs.x.cx / 8;
  168.   *y = regs.x.dx / 8;
  169. }
  170.  
  171. void
  172. mouse_moveto (x, y)
  173.      int x, y;
  174. {
  175.   union REGS regs;
  176.  
  177.   if (termscript)
  178.     fprintf (termscript, "<M_XY=%dx%d>", x, y);
  179.   regs.x.ax = 0x0004;
  180.   mouse_last_x = regs.x.cx = x * 8;
  181.   mouse_last_y = regs.x.dx = y * 8;
  182.   int86 (0x33, ®s, ®s);
  183. }
  184.  
  185. static int
  186. mouse_pressed (b, xp, yp)
  187.      int b, *xp, *yp;
  188. {
  189.   union REGS regs;
  190.  
  191.   if (b >= mouse_button_count)
  192.     return 0;
  193.   regs.x.ax = 0x0005;
  194.   regs.x.bx = mouse_button_translate[b];
  195.   int86 (0x33, ®s, ®s);
  196.   if (regs.x.bx)
  197.     *xp = regs.x.cx / 8, *yp = regs.x.dx / 8;
  198.   return (regs.x.bx != 0);
  199. }
  200.  
  201. static int
  202. mouse_released (b, xp, yp)
  203.      int b, *xp, *yp;
  204. {
  205.   union REGS regs;
  206.  
  207.   if (b >= mouse_button_count)
  208.     return 0;
  209.   regs.x.ax = 0x0006;
  210.   regs.x.bx = mouse_button_translate[b];
  211.   int86 (0x33, ®s, ®s);
  212.   if (regs.x.bx)
  213.     *xp = regs.x.cx / 8, *yp = regs.x.dx / 8;
  214.   return (regs.x.bx != 0);
  215. }
  216.  
  217. void
  218. mouse_get_pos (f, insist, bar_window, part, x, y, time)
  219.      FRAME_PTR *f;
  220.      int insist;
  221.      Lisp_Object *bar_window, *x, *y;
  222.      enum scroll_bar_part *part;
  223.      unsigned long *time;
  224. {
  225.   int ix, iy;
  226.   Lisp_Object frame, tail;
  227.  
  228.   /* Clear the mouse-moved flag for every frame on this display.  */
  229.   FOR_EACH_FRAME (tail, frame)
  230.     XFRAME (frame)->mouse_moved = 0;
  231.  
  232.   *f = selected_frame;
  233.   *bar_window = Qnil;
  234.   mouse_get_xy (&ix, &iy);
  235.   *time = event_timestamp ();
  236.   *x = make_number (mouse_last_x = ix);
  237.   *y = make_number (mouse_last_y = iy);
  238. }
  239.  
  240. static void
  241. mouse_check_moved ()
  242. {
  243.   int x, y;
  244.  
  245.   mouse_get_xy (&x, &y);
  246.   selected_frame->mouse_moved |= (x != mouse_last_x || y != mouse_last_y);
  247.   mouse_last_x = x;
  248.   mouse_last_y = y;
  249. }
  250.  
  251. void
  252. mouse_init ()
  253. {
  254.   union REGS regs;
  255.  
  256.   if (termscript)
  257.     fprintf (termscript, "<M_INIT>");
  258.  
  259.   regs.x.ax = 0x0021;
  260.   int86 (0x33, ®s, ®s);
  261.  
  262.   regs.x.ax = 0x0007;
  263.   regs.x.cx = 0;
  264.   regs.x.dx = 8 * (ScreenCols () - 1);
  265.   int86 (0x33, ®s, ®s);
  266.  
  267.   regs.x.ax = 0x0008;
  268.   regs.x.cx = 0;
  269.   regs.x.dx = 8 * (ScreenRows () - 1);
  270.   int86 (0x33, ®s, ®s);
  271.  
  272.   mouse_moveto (0, 0);
  273.   mouse_visible = 0;
  274. }
  275.  
  276. /* ------------------------- Screen control ----------------------
  277.  *
  278.  */
  279.  
  280. static int internal_terminal = 0;
  281.  
  282. #ifndef HAVE_X_WINDOWS
  283. extern unsigned char ScreenAttrib;
  284. static int screen_face;
  285. static int highlight;
  286.  
  287. static int screen_size_X;
  288. static int screen_size_Y;
  289. static int screen_size;
  290.  
  291. static int current_pos_X;
  292. static int current_pos_Y;
  293. static int new_pos_X;
  294. static int new_pos_Y;
  295.  
  296. static void *startup_screen_buffer;
  297. static int startup_screen_size_X;
  298. static int startup_screen_size_Y;
  299. static int startup_pos_X;
  300. static int startup_pos_Y;
  301. static unsigned char startup_screen_attrib;
  302.  
  303. static int term_setup_done;
  304.  
  305. /* Similar to the_only_frame.  */
  306. struct x_output the_only_x_display;
  307.  
  308. /* This is never dereferenced.  */
  309. Display *x_current_display;
  310.  
  311. /* Support for DOS/V (allows Japanese characters to be displayed on
  312.    standard, non-Japanese, ATs).  Only supported for DJGPP v2 and later.  */
  313.  
  314. /* Holds the address of the text-mode screen buffer.  */
  315. static unsigned long screen_old_address = 0;
  316. /* Segment and offset of the virtual screen.  If 0, DOS/V is NOT loaded.  */
  317. static unsigned short screen_virtual_segment = 0;
  318. static unsigned short screen_virtual_offset = 0;
  319.  
  320. #if __DJGPP__ > 1
  321. /* Update the screen from a part of relocated DOS/V screen buffer which
  322.    begins at OFFSET and includes COUNT characters.  */
  323. static void
  324. dosv_refresh_virtual_screen (int offset, int count)
  325. {
  326.   __dpmi_regs regs;
  327.  
  328.   if (offset < 0 || count < 0)    /* paranoia; illegal values crash DOS/V */
  329.     return;
  330.  
  331.   regs.h.ah = 0xff;    /* update relocated screen */
  332.   regs.x.es = screen_virtual_segment;
  333.   regs.x.di = screen_virtual_offset + offset;
  334.   regs.x.cx = count;
  335.   __dpmi_int (0x10, ®s);
  336. }
  337. #endif
  338.  
  339. static
  340. dos_direct_output (y, x, buf, len)
  341.      int y;
  342.      int x;
  343.      char *buf;
  344.      int len;
  345. {
  346.   int t0 = 2 * (x + y * screen_size_X);
  347.   int t = t0 + (int) ScreenPrimary;
  348.   int l0 = len;
  349.  
  350. #if (__DJGPP__ < 2)
  351.   while (--len >= 0) {
  352.     dosmemput (buf++, 1, t);
  353.     t += 2;
  354.   }
  355. #else
  356.   /* This is faster.  */
  357.   for (_farsetsel (_dos_ds); --len >= 0; t += 2, buf++)
  358.     _farnspokeb (t, *buf);
  359.  
  360.   if (screen_virtual_segment)
  361.     dosv_refresh_virtual_screen (t0, l0);
  362. #endif
  363. }
  364. #endif
  365.  
  366. /* Flash the screen as a substitute for BEEPs.  */
  367.  
  368. #if (__DJGPP__ < 2)
  369. static void
  370. do_visible_bell (xorattr)
  371.      unsigned char xorattr;
  372. {
  373.   asm volatile
  374.     ("  movb   $1,%%dl
  375. visible_bell_0:
  376.     movl   _ScreenPrimary,%%eax
  377.     call   dosmemsetup
  378.     movl   %%eax,%%ebx
  379.     movl   %1,%%ecx
  380.     movb   %0,%%al
  381.     incl   %%ebx
  382. visible_bell_1:
  383.     xorb   %%al,%%gs:(%%ebx)
  384.     addl   $2,%%ebx
  385.     decl   %%ecx
  386.     jne    visible_bell_1
  387.     decb   %%dl
  388.     jne    visible_bell_3
  389. visible_bell_2:
  390.     movzwl %%ax,%%eax
  391.         movzwl %%ax,%%eax
  392.     movzwl %%ax,%%eax
  393.     movzwl %%ax,%%eax
  394.     decw   %%cx
  395.     jne    visible_bell_2
  396.     jmp    visible_bell_0
  397. visible_bell_3:"
  398.      : /* no output */
  399.      : "m" (xorattr), "g" (screen_size)
  400.      : "%eax", "%ebx", /* "%gs",*/ "%ecx", "%edx");
  401. }
  402.  
  403. static void
  404. ScreenVisualBell (void)
  405. {
  406.   /* This creates an xor-mask that will swap the default fore- and
  407.      background colors.  */
  408.   do_visible_bell (((the_only_x_display.foreground_pixel
  409.              ^ the_only_x_display.background_pixel)
  410.             * 0x11) & 0x7f);
  411. }
  412. #endif
  413.  
  414. #ifndef HAVE_X_WINDOWS
  415.  
  416. static int blink_bit = -1;    /* the state of the blink bit at startup */
  417.  
  418. /* Enable bright background colors.  */
  419. static void
  420. bright_bg (void)
  421. {
  422.   union REGS regs;
  423.  
  424.   /* Remember the original state of the blink/bright-background bit.
  425.      It is stored at 0040:0065h in the BIOS data area.  */
  426.   if (blink_bit == -1)
  427.     blink_bit = (_farpeekb (_dos_ds, 0x465) & 0x20) == 0x20;
  428.  
  429.   regs.h.bl = 0;
  430.   regs.x.ax = 0x1003;
  431.   int86 (0x10, ®s, ®s);
  432. }
  433.  
  434. /* Disable bright background colors (and enable blinking) if we found
  435.    the video system in that state at startup.  */
  436. static void
  437. maybe_enable_blinking (void)
  438. {
  439.   if (blink_bit == 1)
  440.     {
  441.       union REGS regs;
  442.  
  443.       regs.h.bl = 1;
  444.       regs.x.ax = 0x1003;
  445.       int86 (0x10, ®s, ®s);
  446.     }
  447. }
  448.  
  449. /* Set the screen dimensions so that it can show no less than
  450.    ROWS x COLS frame.  */
  451.  
  452. void
  453. dos_set_window_size (rows, cols)
  454.      int *rows, *cols;
  455. {
  456.   char video_name[30];
  457.   Lisp_Object video_mode;
  458.   int video_mode_value;
  459.   int have_vga = 0;
  460.   union REGS regs;
  461.   int current_rows = ScreenRows (), current_cols = ScreenCols ();
  462.  
  463.   if (*rows == current_rows && *cols == current_cols)
  464.     return;
  465.  
  466.   /* Do we have a VGA?  */
  467.   regs.x.ax = 0x1a00;
  468.   int86 (0x10, ®s, ®s);
  469.   if (regs.h.al == 0x1a && regs.h.bl > 5 && regs.h.bl < 13)
  470.     have_vga = 1;
  471.  
  472.   mouse_off ();
  473.  
  474.   /* If the user specified a special video mode for these dimensions,
  475.      use that mode.  */
  476.   sprintf (video_name, "screen-dimensions-%dx%d", *rows, *cols);
  477.   video_mode = XSYMBOL (Fintern_soft (build_string (video_name),
  478.                       Qnil))-> value;
  479.  
  480.   if (INTEGERP (video_mode)
  481.       && (video_mode_value = XINT (video_mode)) > 0)
  482.     {
  483.       regs.x.ax = video_mode_value;
  484.       int86 (0x10, ®s, ®s);
  485.  
  486.       if (have_mouse)
  487.     {
  488.       /* Must hardware-reset the mouse, or else it won't update
  489.          its notion of screen dimensions for some non-standard
  490.          video modes.  This is *painfully* slow...  */
  491.       regs.x.ax = 0;
  492.       int86 (0x33, ®s, ®s);
  493.     }
  494.     }
  495.  
  496.   /* Find one of the dimensions supported by standard EGA/VGA
  497.      which gives us at least the required dimensions.  */
  498.  
  499. #if __DJGPP__ > 1
  500.  
  501.   else
  502.     {
  503.       static struct {
  504.     int rows;
  505.     int need_vga;
  506.       }    std_dimension[] = {
  507.       {25, 0},
  508.       {28, 1},
  509.       {35, 0},
  510.       {40, 1},
  511.       {43, 0},
  512.       {50, 1}
  513.       };
  514.       int i = 0;
  515.  
  516.       while (i < sizeof (std_dimension) / sizeof (std_dimension[0]))
  517.     {
  518.      if (std_dimension[i].need_vga <= have_vga
  519.          && std_dimension[i].rows >= *rows)
  520.        {
  521.          if (std_dimension[i].rows != current_rows
  522.          || *cols != current_cols)
  523.            _set_screen_lines (std_dimension[i].rows);
  524.          break;
  525.        }
  526.      i++;
  527.     }
  528.     }
  529.  
  530. #else /* not __DJGPP__ > 1 */
  531.  
  532.   else if (*rows <= 25)
  533.     {
  534.       if (current_rows != 25 || current_cols != 80)
  535.     {
  536.       regs.x.ax = 3;
  537.       int86 (0x10, ®s, ®s);
  538.       regs.x.ax = 0x1101;
  539.       regs.h.bl = 0;
  540.       int86 (0x10, ®s, ®s);
  541.       regs.x.ax = 0x1200;
  542.       regs.h.bl = 32;
  543.       int86 (0x10, ®s, ®s);
  544.       regs.x.ax = 3;
  545.       int86 (0x10, ®s, ®s);
  546.     }
  547.     }
  548.   else if (*rows <= 50)
  549.     if (have_vga && (current_rows != 50 || current_cols != 80)
  550.     || *rows <= 43 && (current_rows != 43 || current_cols != 80))
  551.       {
  552.     regs.x.ax = 3;
  553.     int86 (0x10, ®s, ®s);
  554.     regs.x.ax = 0x1112;
  555.     regs.h.bl = 0;
  556.     int86 (0x10, ®s, ®s);
  557.     regs.x.ax = 0x1200;
  558.     regs.h.bl = 32;
  559.     int86 (0x10, ®s, ®s);
  560.     regs.x.ax = 0x0100;
  561.     regs.x.cx = 7;
  562.     int86 (0x10, ®s, ®s);
  563.       }
  564. #endif /* not __DJGPP__ > 1 */
  565.  
  566.   if (have_mouse)
  567.     {
  568.       mouse_init ();
  569.       mouse_on ();
  570.     }
  571.  
  572.   /* Tell the caller what dimensions have been REALLY set.  */
  573.   *rows = ScreenRows ();
  574.   *cols = ScreenCols ();
  575.  
  576.   /* Enable bright background colors.  */
  577.   bright_bg ();
  578.  
  579.   /* FIXME: I'm not sure the above will run at all on DOS/V.  But let's
  580.      be defensive anyway.  */
  581.   if (screen_virtual_segment)
  582.     dosv_refresh_virtual_screen (0, *cols * *rows);
  583. }
  584.  
  585. /* If we write a character in the position where the mouse is,
  586.    the mouse cursor may need to be refreshed.  */
  587.  
  588. static void
  589. mouse_off_maybe ()
  590. {
  591.   int x, y;
  592.   
  593.   if (!mouse_visible)
  594.     return;
  595.   
  596.   mouse_get_xy (&x, &y);
  597.   if (y != new_pos_Y || x < new_pos_X)
  598.     return;
  599.   
  600.   mouse_off ();
  601. }
  602.  
  603. static void
  604. IT_ring_bell (void)
  605. {
  606.   if (visible_bell)
  607.     {
  608.       mouse_off ();
  609.       ScreenVisualBell ();
  610.     }
  611.   else
  612.     {
  613.       union REGS inregs, outregs;
  614.       inregs.h.ah = 2;
  615.       inregs.h.dl = 7;
  616.       intdos (&inregs, &outregs);
  617.     }
  618. }
  619.  
  620. static void
  621. IT_set_face (int face)
  622. {
  623.   struct face *fp;
  624.   extern struct face *intern_face (/* FRAME_PTR, struct face * */);
  625.  
  626.   if (face == 1 || (face == 0 && highlight))
  627.     fp = FRAME_MODE_LINE_FACE (foo);
  628.   else if (face <= 0 || face >= FRAME_N_COMPUTED_FACES (foo))
  629.     fp = FRAME_DEFAULT_FACE (foo);
  630.   else
  631.     fp = intern_face (selected_frame, FRAME_COMPUTED_FACES (foo)[face]);
  632.   if (termscript)
  633.     fprintf (termscript, "<FACE %d: %d/%d>",
  634.          face, FACE_FOREGROUND (fp), FACE_BACKGROUND (fp));
  635.   screen_face = face;
  636.   ScreenAttrib = (FACE_BACKGROUND (fp) << 4) | FACE_FOREGROUND (fp);
  637. }
  638.  
  639. static void
  640. IT_write_glyphs (GLYPH *str, int len)
  641. {
  642.   int newface;
  643.   int ch, l = len;
  644.   unsigned char *buf, *bp;
  645.   int offset = 2 * (new_pos_X + screen_size_X * new_pos_Y);
  646.  
  647.   if (len == 0) return;
  648.   
  649.   buf = bp = alloca (len * 2);
  650.   
  651.   while (--l >= 0)
  652.     {
  653.       newface = FAST_GLYPH_FACE (*str);
  654.       if (newface != screen_face)
  655.     IT_set_face (newface);
  656.       ch = FAST_GLYPH_CHAR (*str);
  657.       *bp++ = (unsigned char)ch;
  658.       *bp++ = ScreenAttrib;
  659.       
  660.       if (termscript)
  661.     fputc (ch, termscript);
  662.       str++;
  663.     }
  664.  
  665.   mouse_off_maybe ();
  666.   dosmemput (buf, 2 * len, (int)ScreenPrimary + offset);
  667.   if (screen_virtual_segment)
  668.     dosv_refresh_virtual_screen (offset, len);
  669.   new_pos_X += len;
  670. }
  671.  
  672. static void
  673. IT_clear_end_of_line (int first_unused)
  674. {
  675.   char *spaces, *sp;
  676.   int i, j;
  677.   int offset = 2 * (new_pos_X + screen_size_X * new_pos_Y);
  678.  
  679.   IT_set_face (0);
  680.   if (termscript)
  681.     fprintf (termscript, "<CLR:EOL>");
  682.   i = (j = screen_size_X - new_pos_X) * 2;
  683.   spaces = sp = alloca (i);
  684.   
  685.   while (--j >= 0)
  686.     {
  687.       *sp++ = ' ';
  688.       *sp++ = ScreenAttrib;
  689.     }
  690.  
  691.   mouse_off_maybe ();
  692.   dosmemput (spaces, i, (int)ScreenPrimary + offset);
  693.   if (screen_virtual_segment)
  694.     dosv_refresh_virtual_screen (offset, i / 2);
  695. }
  696.  
  697. static void
  698. IT_clear_screen (void)
  699. {
  700.   if (termscript)
  701.     fprintf (termscript, "<CLR:SCR>");
  702.   IT_set_face (0);
  703.   mouse_off ();
  704.   ScreenClear ();
  705.   if (screen_virtual_segment)
  706.     dosv_refresh_virtual_screen (0, screen_size);
  707.   new_pos_X = new_pos_Y = 0;
  708. }
  709.  
  710. static void
  711. IT_clear_to_end (void)
  712. {
  713.   if (termscript)
  714.     fprintf (termscript, "<CLR:EOS>");
  715.  
  716.   while (new_pos_Y < screen_size_Y) {
  717.     new_pos_X = 0;
  718.     IT_clear_end_of_line (0);
  719.     new_pos_Y++;
  720.   }
  721. }
  722.  
  723. static void
  724. IT_cursor_to (int y, int x)
  725. {
  726.   if (termscript)
  727.     fprintf (termscript, "\n<XY=%dx%d>", x, y);
  728.   new_pos_X = x;
  729.   new_pos_Y = y;
  730. }
  731.  
  732. static int cursor_cleared;
  733.  
  734. static
  735. IT_display_cursor (int on)
  736. {
  737.   if (on && cursor_cleared)
  738.     {
  739.       ScreenSetCursor (current_pos_Y, current_pos_X);
  740.       cursor_cleared = 0;
  741.     }
  742.   else if (!on && !cursor_cleared)
  743.     {
  744.       ScreenSetCursor (-1, -1);
  745.       cursor_cleared = 1;
  746.     }
  747. }
  748.  
  749. /* Emacs calls cursor-movement functions a lot when it updates the
  750.    display (probably a legacy of old terminals where you cannot
  751.    update a screen line without first moving the cursor there).
  752.    However, cursor movement is expensive on MSDOS (it calls a slow
  753.    BIOS function and requires 2 mode switches), while actual screen
  754.    updates access the video memory directly and don't depend on
  755.    cursor position.  To avoid slowing down the redisplay, we cheat:
  756.    all functions that move the cursor only set internal variables
  757.    which record the cursor position, whereas the cursor is only
  758.    moved to its final position whenever screen update is complete.
  759.  
  760.    `IT_cmgoto' is called from the keyboard reading loop and when the
  761.    frame update is complete.  This means that we are ready for user
  762.    input, so we update the cursor position to show where the point is,
  763.    and also make the mouse pointer visible.
  764.  
  765.    Special treatment is required when the cursor is in the echo area,
  766.    to put the cursor at the end of the text displayed there.  */
  767.  
  768. static void
  769. IT_cmgoto (FRAME_PTR f)
  770. {
  771.   /* Only set the cursor to where it should be if the display is
  772.      already in sync with the window contents.  */
  773.   int update_cursor_pos = MODIFF == unchanged_modified;
  774.  
  775.   /* If we are in the echo area, and the cursor is beyond the end of
  776.      the text, put the cursor at the end of text.  */
  777.   if (!update_cursor_pos
  778.       && XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top) <= new_pos_Y)
  779.     {
  780.       int tem_X = FRAME_DESIRED_GLYPHS (f)->used[new_pos_Y];
  781.  
  782.       if (current_pos_X > tem_X)
  783.     {
  784.       new_pos_X = tem_X;
  785.       update_cursor_pos = 1;
  786.     }
  787.     }
  788.  
  789.   if (update_cursor_pos
  790.       && (current_pos_X != new_pos_X || current_pos_Y != new_pos_Y))
  791.     {
  792.       ScreenSetCursor (current_pos_Y = new_pos_Y, current_pos_X = new_pos_X);
  793.       if (termscript)
  794.     fprintf (termscript, "\n<CURSOR:%dx%d>", current_pos_X, current_pos_Y);
  795.     }
  796.  
  797.   /* Maybe cursor is invisible, so make it visible.  */
  798.   IT_display_cursor (1);
  799.  
  800.   /* Mouse pointer should be always visible if we are waiting for
  801.      keyboard input.  */
  802.   if (!mouse_visible)
  803.     mouse_on ();
  804. }
  805.  
  806. static void
  807. IT_reassert_line_highlight (int new, int vpos)
  808. {
  809.   highlight = new;
  810.   IT_set_face (0); /* To possibly clear the highlighting.  */
  811. }
  812.  
  813. static void
  814. IT_change_line_highlight (int new_highlight, int vpos, int first_unused_hpos)
  815. {
  816.   highlight = new_highlight;
  817.   IT_set_face (0); /* To possibly clear the highlighting.  */
  818.   IT_cursor_to (vpos, 0);
  819.   IT_clear_end_of_line (first_unused_hpos);
  820. }
  821.  
  822. static void
  823. IT_update_begin (struct frame *foo)
  824. {
  825.   highlight = 0;
  826.   IT_set_face (0); /* To possibly clear the highlighting.  */
  827.   screen_face = -1;
  828. }
  829.  
  830. static void
  831. IT_update_end (struct frame *foo)
  832. {
  833. }
  834.  
  835. /* set-window-configuration on window.c needs this.  */
  836. void
  837. x_set_menu_bar_lines (f, value, oldval)
  838.      struct frame *f;
  839.      Lisp_Object value, oldval;
  840. {
  841.   set_menu_bar_lines (f, value, oldval);
  842. }
  843.  
  844. /* This was copied from xfns.c  */
  845.  
  846. Lisp_Object Qbackground_color;
  847. Lisp_Object Qforeground_color;
  848. extern Lisp_Object Qtitle;
  849.  
  850. /* IT_set_terminal_modes is called when emacs is started,
  851.    resumed, and whenever the screen is redrawn!  */
  852.  
  853. static void
  854. IT_set_terminal_modes (void)
  855. {
  856.   if (termscript)
  857.     fprintf (termscript, "\n<SET_TERM>");
  858.   highlight = 0;
  859.  
  860.   screen_size_X = ScreenCols ();
  861.   screen_size_Y = ScreenRows ();
  862.   screen_size = screen_size_X * screen_size_Y;
  863.   
  864.   new_pos_X = new_pos_Y = 0;
  865.   current_pos_X = current_pos_Y = -1;
  866.  
  867.   if (term_setup_done)
  868.     return;
  869.   term_setup_done = 1;
  870.   
  871.   startup_screen_size_X = screen_size_X;
  872.   startup_screen_size_Y = screen_size_Y;
  873.   startup_screen_attrib = ScreenAttrib;
  874.  
  875. #if __DJGPP__ > 1
  876.   /* Is DOS/V (or any other RSIS software which relocates
  877.      the screen) installed?  */
  878.   {
  879.     unsigned short es_value;
  880.     __dpmi_regs regs;
  881.  
  882.     regs.h.ah = 0xfe;    /* get relocated screen address */
  883.     if (ScreenPrimary == 0xb0000UL || ScreenPrimary == 0xb8000UL)
  884.       regs.x.es = (ScreenPrimary >> 4) & 0xffff;
  885.     else if (screen_old_address) /* already switched to Japanese mode once */
  886.       regs.x.es = (screen_old_address >> 4) & 0xffff;
  887.     else
  888.       regs.x.es = ScreenMode () == 7 ? 0xb000 : 0xb800;
  889.     regs.x.di = 0;
  890.     es_value = regs.x.es;
  891.     __dpmi_int (0x10, ®s);
  892.  
  893.     if (regs.x.es != es_value && regs.x.es != (ScreenPrimary >> 4) & 0xffff)
  894.       {
  895.     screen_old_address = ScreenPrimary;
  896.     screen_virtual_segment = regs.x.es;
  897.     screen_virtual_offset  = regs.x.di;
  898.     ScreenPrimary = (screen_virtual_segment << 4) + screen_virtual_offset;
  899.       }
  900.   }
  901. #endif /* __DJGPP__ > 1 */
  902.  
  903.   ScreenGetCursor (&startup_pos_Y, &startup_pos_X);
  904.   ScreenRetrieve (startup_screen_buffer = xmalloc (screen_size * 2));
  905.  
  906.   if (termscript)
  907.     fprintf (termscript, "<SCREEN SAVED (dimensions=%dx%d)>\n",
  908.          screen_size_X, screen_size_Y);
  909.  
  910.   bright_bg ();
  911. }
  912.  
  913. /* IT_reset_terminal_modes is called when emacs is
  914.    suspended or killed.  */
  915.  
  916. static void
  917. IT_reset_terminal_modes (void)
  918. {
  919.   int display_row_start = (int) ScreenPrimary;
  920.   int saved_row_len     = startup_screen_size_X * 2;
  921.   int update_row_len    = ScreenCols () * 2;
  922.   int current_rows      = ScreenRows ();
  923.   int to_next_row       = update_row_len;
  924.   unsigned char *saved_row = startup_screen_buffer;
  925.   int cursor_pos_X = ScreenCols () - 1;
  926.   int cursor_pos_Y = ScreenRows () - 1;
  927.  
  928.   if (termscript)
  929.     fprintf (termscript, "\n<RESET_TERM>");
  930.  
  931.   highlight = 0;
  932.  
  933.   if (!term_setup_done)
  934.     return;
  935.   
  936.   mouse_off ();
  937.  
  938.   /* Leave the video system in the same state as we found it,
  939.      as far as the blink/bright-background bit is concerned.  */
  940.   maybe_enable_blinking ();
  941.  
  942.   /* We have a situation here.
  943.      We cannot just do ScreenUpdate(startup_screen_buffer) because
  944.      the luser could have changed screen dimensions inside Emacs
  945.      and failed (or didn't want) to restore them before killing
  946.      Emacs.  ScreenUpdate() uses the *current* screen dimensions and
  947.      thus will happily use memory outside what was allocated for
  948.      `startup_screen_buffer'.
  949.      Thus we only restore as much as the current screen dimensions
  950.      can hold, and clear the rest (if the saved screen is smaller than
  951.      the current) with the color attribute saved at startup.  The cursor
  952.      is also restored within the visible dimensions.  */
  953.  
  954.   ScreenAttrib = startup_screen_attrib;
  955.   ScreenClear ();
  956.   if (screen_virtual_segment)
  957.     dosv_refresh_virtual_screen (0, screen_size);
  958.  
  959.   if (update_row_len > saved_row_len)
  960.     update_row_len = saved_row_len;
  961.   if (current_rows > startup_screen_size_Y)
  962.     current_rows = startup_screen_size_Y;
  963.  
  964.   if (termscript)
  965.     fprintf (termscript, "<SCREEN RESTORED (dimensions=%dx%d)>\n",
  966.              update_row_len / 2, current_rows);
  967.  
  968.   while (current_rows--)
  969.     {
  970.       dosmemput (saved_row, update_row_len, display_row_start);
  971.       if (screen_virtual_segment)
  972.     dosv_refresh_virtual_screen (display_row_start - ScreenPrimary,
  973.                      update_row_len / 2);
  974.       saved_row         += saved_row_len;
  975.       display_row_start += to_next_row;
  976.     }
  977.   if (startup_pos_X < cursor_pos_X)
  978.     cursor_pos_X = startup_pos_X;
  979.   if (startup_pos_Y < cursor_pos_Y)
  980.     cursor_pos_Y = startup_pos_Y;
  981.  
  982.   ScreenSetCursor (cursor_pos_Y, cursor_pos_X);
  983.   xfree (startup_screen_buffer);
  984.  
  985.   term_setup_done = 0;
  986. }
  987.  
  988. static void
  989. IT_set_terminal_window (int foo)
  990. {
  991. }
  992.  
  993. void
  994. IT_set_frame_parameters (f, alist)
  995.      FRAME_PTR f;
  996.      Lisp_Object alist;
  997. {
  998.   Lisp_Object tail;
  999.   int length = XINT (Flength (alist));
  1000.   int i;
  1001.   Lisp_Object *parms
  1002.     = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
  1003.   Lisp_Object *values
  1004.     = (Lisp_Object *) alloca (length * sizeof (Lisp_Object));
  1005.   int redraw;
  1006.   extern unsigned long load_color ();
  1007.  
  1008.   redraw = 0;
  1009.  
  1010.   /* Extract parm names and values into those vectors.  */
  1011.   i = 0;
  1012.   for (tail = alist; CONSP (tail); tail = Fcdr (tail))
  1013.     {
  1014.       Lisp_Object elt;
  1015.  
  1016.       elt = Fcar (tail);
  1017.       parms[i] = Fcar (elt);
  1018.       CHECK_SYMBOL (parms[i], 1);
  1019.       values[i] = Fcdr (elt);
  1020.       i++;
  1021.     }
  1022.  
  1023.  
  1024.   /* Now process them in reverse of specified order.  */
  1025.   for (i--; i >= 0; i--)
  1026.     {
  1027.       Lisp_Object prop = parms[i];
  1028.       Lisp_Object val  = values[i];
  1029.  
  1030.       if (EQ (prop, Qforeground_color))
  1031.     {
  1032.       unsigned long new_color = load_color (f, val);
  1033.       if (new_color != ~0)
  1034.         {
  1035.           FRAME_FOREGROUND_PIXEL (f) = new_color;
  1036.           redraw = 1;
  1037.           if (termscript)
  1038.         fprintf (termscript, "<FGCOLOR %lu>\n", new_color);
  1039.         }
  1040.     }
  1041.       else if (EQ (prop, Qbackground_color))
  1042.     {
  1043.       unsigned long new_color = load_color (f, val);
  1044.       if (new_color != ~0)
  1045.         {
  1046.           FRAME_BACKGROUND_PIXEL (f) = new_color;
  1047.           redraw = 1;
  1048.           if (termscript)
  1049.         fprintf (termscript, "<BGCOLOR %lu>\n", new_color);
  1050.         }
  1051.     }
  1052.       else if (EQ (prop, Qtitle))
  1053.     {
  1054.       x_set_title (f, val);
  1055.       if (termscript)
  1056.         fprintf (termscript, "<TITLE: %s>\n", XSTRING (val)->data);
  1057.     }
  1058.       else if (EQ (prop, intern ("reverse")) && EQ (val, Qt))
  1059.     {
  1060.       unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
  1061.  
  1062.       FRAME_FOREGROUND_PIXEL (f) = FRAME_BACKGROUND_PIXEL (f);
  1063.       FRAME_BACKGROUND_PIXEL (f) = fg;
  1064.       if (termscript)
  1065.         fprintf (termscript, "<INVERSE-VIDEO>\n");
  1066.     }
  1067.       store_frame_param (f, prop, val);
  1068.  
  1069.     }
  1070.  
  1071.   if (redraw)
  1072.     {
  1073.       extern void recompute_basic_faces (FRAME_PTR);
  1074.       extern void redraw_frame (FRAME_PTR);
  1075.  
  1076.       recompute_basic_faces (f);
  1077.       if (f == selected_frame)
  1078.     redraw_frame (f);
  1079.     }
  1080. }
  1081.  
  1082. extern void init_frame_faces (FRAME_PTR);
  1083.  
  1084. #endif /* !HAVE_X_WINDOWS */
  1085.  
  1086.  
  1087. /* Do we need the internal terminal?  */
  1088.  
  1089. void
  1090. internal_terminal_init ()
  1091. {
  1092.   char *term = getenv ("TERM");
  1093.   char *colors;
  1094.  
  1095. #ifdef HAVE_X_WINDOWS
  1096.   if (!inhibit_window_system)
  1097.     return;
  1098. #endif
  1099.  
  1100.   internal_terminal
  1101.     = (!noninteractive) && term && !strcmp (term, "internal");
  1102.  
  1103.   if (getenv ("EMACSTEST"))
  1104.     termscript = fopen (getenv ("EMACSTEST"), "wt");
  1105.   
  1106. #ifndef HAVE_X_WINDOWS
  1107.   if (!internal_terminal || inhibit_window_system)
  1108.     {
  1109.       selected_frame->output_method = output_termcap;
  1110.       return;
  1111.     }
  1112.  
  1113.   Vwindow_system = intern ("pc");
  1114.   Vwindow_system_version = make_number (1);
  1115.  
  1116.   /* If Emacs was dumped on DOS/V machine, forget the stale VRAM address.  */
  1117.   screen_old_address = 0;
  1118.  
  1119.   bzero (&the_only_x_display, sizeof the_only_x_display);
  1120.   the_only_x_display.background_pixel = 7; /* White */
  1121.   the_only_x_display.foreground_pixel = 0; /* Black */
  1122.   bright_bg ();
  1123.   colors = getenv ("EMACSCOLORS");
  1124.   if (colors && strlen (colors) >= 2)
  1125.     {
  1126.       /* The colors use 4 bits each (we enable bright background).  */
  1127.       if (isdigit (colors[0]))
  1128.         colors[0] -= '0';
  1129.       else if (isxdigit (colors[0]))
  1130.         colors[0] -= (isupper (colors[0]) ? 'A' : 'a') - 10;
  1131.       if (colors[0] >= 0 && colors[0] < 16)
  1132.         the_only_x_display.foreground_pixel = colors[0];
  1133.       if (isdigit (colors[1]))
  1134.         colors[1] -= '0';
  1135.       else if (isxdigit (colors[1]))
  1136.         colors[1] -= (isupper (colors[1]) ? 'A' : 'a') - 10;
  1137.       if (colors[1] >= 0 && colors[1] < 16)
  1138.         the_only_x_display.background_pixel = colors[1];
  1139.     }
  1140.   the_only_x_display.line_height = 1;
  1141.   the_only_x_display.font = (XFontStruct *)1;   /* must *not* be zero */
  1142.  
  1143.   init_frame_faces (selected_frame);
  1144.  
  1145.   ring_bell_hook = IT_ring_bell;
  1146.   write_glyphs_hook = IT_write_glyphs;
  1147.   cursor_to_hook = raw_cursor_to_hook = IT_cursor_to;
  1148.   clear_to_end_hook = IT_clear_to_end;
  1149.   clear_end_of_line_hook = IT_clear_end_of_line;
  1150.   clear_frame_hook = IT_clear_screen;
  1151.   change_line_highlight_hook = IT_change_line_highlight;
  1152.   update_begin_hook = IT_update_begin;
  1153.   update_end_hook = IT_update_end;
  1154.   reassert_line_highlight_hook = IT_reassert_line_highlight;
  1155.   frame_up_to_date_hook = IT_cmgoto; /* position cursor when update is done */
  1156.  
  1157.   /* These hooks are called by term.c without being checked.  */
  1158.   set_terminal_modes_hook = IT_set_terminal_modes;
  1159.   reset_terminal_modes_hook = IT_reset_terminal_modes;
  1160.   set_terminal_window_hook = IT_set_terminal_window;
  1161. #endif
  1162. }
  1163.  
  1164. dos_get_saved_screen (screen, rows, cols)
  1165.      char **screen;
  1166.      int *rows;
  1167.      int *cols;
  1168. {
  1169. #ifndef HAVE_X_WINDOWS
  1170.   *screen = startup_screen_buffer;
  1171.   *cols = startup_screen_size_X;
  1172.   *rows = startup_screen_size_Y;
  1173.   return *screen != (char *)0;
  1174. #else
  1175.   return 0;
  1176. #endif  
  1177. }
  1178.  
  1179. #ifndef HAVE_X_WINDOWS
  1180.  
  1181. /* We are not X, but we can emulate it well enough for our needs... */
  1182. void
  1183. check_x (void)
  1184. {
  1185.   if (! FRAME_MSDOS_P (selected_frame))
  1186.     error ("Not running under a windows system");
  1187. }
  1188.  
  1189. #endif
  1190.  
  1191.  
  1192. /* ----------------------- Keyboard control ----------------------
  1193.  *
  1194.  * Keymaps reflect the following keyboard layout:
  1195.  *
  1196.  *    0  1  2  3  4  5  6  7  8  9  10 11 12  BS
  1197.  *    TAB 15 16 17 18 19 20 21 22 23 24 25 26 (41)
  1198.  *    CLOK 30 31 32 33 34 35 36 37 38 39 40 (41) RET
  1199.  *    SH () 45 46 47 48 49 50 51 52 53 54  SHIFT
  1200.  *                    SPACE
  1201.  */
  1202.  
  1203. static int extended_kbd; /* 101 (102) keyboard present.    */
  1204.  
  1205. struct dos_keyboard_map
  1206. {
  1207.   char *unshifted;
  1208.   char *shifted;
  1209.   char *alt_gr;
  1210. };
  1211.  
  1212.  
  1213. static struct dos_keyboard_map us_keyboard = {
  1214. /* 0         1         2         3         4         5      */
  1215. /* 01234567890123456789012345678901234567890 12345678901234 */
  1216.   "`1234567890-=  qwertyuiop[]   asdfghjkl;'\\   zxcvbnm,./  ",
  1217. /* 0123456789012345678901234567890123456789 012345678901234 */
  1218.   "~!@#$%^&*()_+  QWERTYUIOP{}   ASDFGHJKL:\"|   ZXCVBNM<>?  ",
  1219.   0                /* no Alt-Gr key */
  1220. };
  1221.  
  1222. static struct dos_keyboard_map fr_keyboard = {
  1223. /* 0         1         2         3         4         5      */
  1224. /* 012 3456789012345678901234567890123456789012345678901234 */
  1225.   "²&é\",(-è_Çà)=  azertyuiop^$   qsdfghjklmù*   wxcvbnm;:!  ",
  1226. /* 0123456789012345678901234567890123456789012345678901234 */
  1227.   " 1234567890°+  AZERTYUIOP∙£   QSDFGHJKLM%µ   WXCVBN?./⌡  ",
  1228. /* 01234567 89012345678901234567890123456789012345678901234 */
  1229.   "  ~#{[|`\\^@]}             ╧                              "
  1230. };
  1231.  
  1232. /*
  1233.  * Italian keyboard support, country code 39.
  1234.  * '<' 56:3c*0000
  1235.  * '>' 56:3e*0000
  1236.  * added also {,},` as, respectively, AltGr-8, AltGr-9, AltGr-'
  1237.  * Donated by Stefano Brozzi <brozzis@mag00.cedi.unipr.it>
  1238.  */
  1239. static struct dos_keyboard_map it_keyboard = {
  1240. /* 0          1         2         3         4         5     */
  1241. /* 0 123456789012345678901234567890123456789012345678901234 */
  1242.   "\\1234567890'ì  qwertyuiopè+   asdfghjklòàù   zxcvbnm,.-  ",
  1243. /* 01 23456789012345678901234567890123456789012345678901234 */
  1244.   "|!\"£$%&/()=?^  QWERTYUIOPé*   ASDFGHJKLç°⌡   ZXCVBNM;:_  ",
  1245. /* 0123456789012345678901234567890123456789012345678901234 */
  1246.   "        {}~`             []             @#               "
  1247. };
  1248.  
  1249. static struct dos_keyboard_map dk_keyboard = {
  1250. /* 0         1         2         3         4         5      */
  1251. /* 0123456789012345678901234567890123456789012345678901234 */
  1252.   "½1234567890+|  qwertyuiopå~   asdfghjklæ¢'   zxcvbnm,.-  ",
  1253. /* 01 23456789012345678901234567890123456789012345678901234 */
  1254.   "⌡!\"#$%&/()=?`  QWERTYUIOPÅ^   ASDFGHJKLÆ¥*   ZXCVBNM;:_  ",
  1255. /* 0123456789012345678901234567890123456789012345678901234 */
  1256.   "  @£$  {[]} |                                             "
  1257. };
  1258.  
  1259. static struct keyboard_layout_list
  1260. {
  1261.   int country_code;
  1262.   struct dos_keyboard_map *keyboard_map;
  1263. } keyboard_layout_list[] =
  1264. {
  1265.   1, &us_keyboard,
  1266.   33, &fr_keyboard,
  1267.   39, &it_keyboard,
  1268.   45, &dk_keyboard
  1269. };
  1270.  
  1271. static struct dos_keyboard_map *keyboard;
  1272. static int keyboard_map_all;
  1273. static int international_keyboard;
  1274.  
  1275. int
  1276. dos_set_keyboard (code, always)
  1277.      int code;
  1278.      int always;
  1279. {
  1280.   int i;
  1281.   _go32_dpmi_registers regs;
  1282.  
  1283.   /* See if Keyb.Com is installed (for international keyboard support).
  1284.      Note: calling Int 2Fh via int86 wedges the DOS box on some versions
  1285.      of Windows 9X!  So don't do that!  */
  1286.   regs.x.ax = 0xad80;
  1287.   regs.x.ss = regs.x.sp = regs.x.flags = 0;
  1288.   _go32_dpmi_simulate_int (0x2f, ®s);
  1289.   if (regs.h.al == 0xff)
  1290.     international_keyboard = 1;
  1291.  
  1292.   /* Initialize to US settings, for countries that don't have their own.  */
  1293.   keyboard = keyboard_layout_list[0].keyboard_map;
  1294.   keyboard_map_all = always;
  1295.   dos_keyboard_layout = 1;
  1296.   
  1297.   for (i = 0; i < (sizeof (keyboard_layout_list)/sizeof (struct keyboard_layout_list)); i++)
  1298.     if (code == keyboard_layout_list[i].country_code)
  1299.       {
  1300.     keyboard = keyboard_layout_list[i].keyboard_map;
  1301.     keyboard_map_all = always;
  1302.     dos_keyboard_layout = code;
  1303.     return 1;
  1304.       }
  1305.   return 0;
  1306. }
  1307.  
  1308. #define Ignore    0x0000
  1309. #define Normal    0x0000    /* normal key - alt changes scan-code */
  1310. #define FctKey    0x1000    /* func key if c == 0, else c */
  1311. #define Special    0x2000    /* func key even if c != 0 */
  1312. #define ModFct    0x3000    /* special if mod-keys, else 'c' */
  1313. #define Map    0x4000    /* alt scan-code, map to unshift/shift key */
  1314. #define KeyPad    0x5000    /* map to insert/kp-0 depending on c == 0xe0 */
  1315. #define Grey    0x6000    /* Grey keypad key */
  1316.  
  1317. #define Alt    0x0100    /* alt scan-code */
  1318. #define Ctrl    0x0200    /* ctrl scan-code */
  1319. #define Shift    0x0400    /* shift scan-code */
  1320.  
  1321. static struct
  1322. {
  1323.   unsigned char char_code;    /* normal code    */
  1324.   unsigned char meta_code;    /* M- code    */
  1325.   unsigned char keypad_code;    /* keypad code    */
  1326.   unsigned char editkey_code;    /* edit key    */
  1327. } keypad_translate_map[] = {
  1328.   '0',  '0',  0xb0, /* kp-0 */        0x63, /* insert */
  1329.   '1',  '1',  0xb1, /* kp-1 */        0x57, /* end */
  1330.   '2',  '2',  0xb2, /* kp-2 */        0x54, /* down */
  1331.   '3',  '3',  0xb3, /* kp-3 */        0x56, /* next */
  1332.   '4',  '4',  0xb4, /* kp-4 */        0x51, /* left */
  1333.   '5',  '5',  0xb5, /* kp-5 */        0xb5, /* kp-5 */
  1334.   '6',  '6',  0xb6, /* kp-6 */        0x53, /* right */
  1335.   '7',  '7',  0xb7, /* kp-7 */        0x50, /* home */
  1336.   '8',  '8',  0xb8, /* kp-8 */        0x52, /* up */
  1337.   '9',  '9',  0xb9, /* kp-9 */        0x55, /* prior */
  1338.   '.',  '-',  0xae, /* kp-decimal */    0xff  /* delete */
  1339. };
  1340.  
  1341. static struct
  1342. {
  1343.   unsigned char char_code;    /* normal code    */
  1344.   unsigned char keypad_code;    /* keypad code    */
  1345. } grey_key_translate_map[] = {
  1346.   '/',  0xaf, /* kp-decimal */
  1347.   '*',  0xaa, /* kp-multiply */
  1348.   '-',  0xad, /* kp-subtract */
  1349.   '+',  0xab, /* kp-add */
  1350.   '\r', 0x8d  /* kp-enter */
  1351. };
  1352.  
  1353. static unsigned short
  1354. ibmpc_translate_map[] =
  1355. {
  1356.   /* --------------- 00 to 0f --------------- */
  1357.   Normal | 0xff,    /* Ctrl Break + Alt-NNN */
  1358.   Alt | ModFct | 0x1b,        /* Escape */
  1359.   Normal | 1,            /* '1' */
  1360.   Normal | 2,            /* '2' */
  1361.   Normal | 3,            /* '3' */
  1362.   Normal | 4,            /* '4' */
  1363.   Normal | 5,            /* '5' */
  1364.   Normal | 6,            /* '6' */
  1365.   Normal | 7,            /* '7' */
  1366.   Normal | 8,            /* '8' */
  1367.   Normal | 9,            /* '9' */
  1368.   Normal | 10,            /* '0' */
  1369.   Normal | 11,            /* '-' */
  1370.   Normal | 12,            /* '=' */
  1371.   Special | 0x08,        /* Backspace */
  1372.   ModFct | 0x74,        /* Tab/Backtab */
  1373.  
  1374.   /* --------------- 10 to 1f --------------- */
  1375.   Map | 15,            /* 'q' */
  1376.   Map | 16,            /* 'w' */
  1377.   Map | 17,            /* 'e' */
  1378.   Map | 18,            /* 'r' */
  1379.   Map | 19,            /* 't' */
  1380.   Map | 20,            /* 'y' */
  1381.   Map | 21,            /* 'u' */
  1382.   Map | 22,            /* 'i' */
  1383.   Map | 23,            /* 'o' */
  1384.   Map | 24,            /* 'p' */
  1385.   Map | 25,            /* '[' */
  1386.   Map | 26,            /* ']' */ 
  1387.   ModFct | 0x0d,        /* Return */
  1388.   Ignore,            /* Ctrl */
  1389.   Map | 30,            /* 'a' */
  1390.   Map | 31,            /* 's' */
  1391.  
  1392.   /* --------------- 20 to 2f --------------- */
  1393.   Map | 32,            /* 'd' */
  1394.   Map | 33,            /* 'f' */
  1395.   Map | 34,            /* 'g' */
  1396.   Map | 35,            /* 'h' */
  1397.   Map | 36,            /* 'j' */
  1398.   Map | 37,            /* 'k' */
  1399.   Map | 38,            /* 'l' */
  1400.   Map | 39,            /* ';' */
  1401.   Map | 40,            /* '\'' */
  1402.   Map |  0,            /* '`' */
  1403.   Ignore,            /* Left shift */
  1404.   Map | 41,            /* '\\' */
  1405.   Map | 45,            /* 'z' */
  1406.   Map | 46,            /* 'x' */
  1407.   Map | 47,            /* 'c' */
  1408.   Map | 48,            /* 'v' */
  1409.  
  1410.   /* --------------- 30 to 3f --------------- */
  1411.   Map | 49,            /* 'b' */
  1412.   Map | 50,            /* 'n' */
  1413.   Map | 51,            /* 'm' */
  1414.   Map | 52,            /* ',' */
  1415.   Map | 53,            /* '.' */
  1416.   Map | 54,            /* '/' */
  1417.   Ignore,            /* Right shift */
  1418.   Grey | 1,            /* Grey * */
  1419.   Ignore,            /* Alt */
  1420.   Normal |  ' ',        /* ' ' */
  1421.   Ignore,            /* Caps Lock */
  1422.   FctKey | 0xbe,        /* F1 */
  1423.   FctKey | 0xbf,        /* F2 */
  1424.   FctKey | 0xc0,        /* F3 */
  1425.   FctKey | 0xc1,        /* F4 */
  1426.   FctKey | 0xc2,        /* F5 */
  1427.  
  1428.   /* --------------- 40 to 4f --------------- */
  1429.   FctKey | 0xc3,        /* F6 */
  1430.   FctKey | 0xc4,        /* F7 */
  1431.   FctKey | 0xc5,        /* F8 */
  1432.   FctKey | 0xc6,        /* F9 */
  1433.   FctKey | 0xc7,        /* F10 */
  1434.   Ignore,            /* Num Lock */
  1435.   Ignore,            /* Scroll Lock */
  1436.   KeyPad | 7,            /* Home */
  1437.   KeyPad | 8,            /* Up */
  1438.   KeyPad | 9,            /* Page Up */
  1439.   Grey | 2,            /* Grey - */
  1440.   KeyPad | 4,            /* Left */
  1441.   KeyPad | 5,            /* Keypad 5 */
  1442.   KeyPad | 6,            /* Right */
  1443.   Grey | 3,            /* Grey + */
  1444.   KeyPad | 1,            /* End */
  1445.  
  1446.   /* --------------- 50 to 5f --------------- */
  1447.   KeyPad | 2,            /* Down */
  1448.   KeyPad | 3,            /* Page Down */
  1449.   KeyPad | 0,            /* Insert */
  1450.   KeyPad | 10,            /* Delete */
  1451.   Shift | FctKey | 0xbe,    /* (Shift) F1 */
  1452.   Shift | FctKey | 0xbf,    /* (Shift) F2 */
  1453.   Shift | FctKey | 0xc0,    /* (Shift) F3 */
  1454.   Shift | FctKey | 0xc1,    /* (Shift) F4 */
  1455.   Shift | FctKey | 0xc2,    /* (Shift) F5 */
  1456.   Shift | FctKey | 0xc3,    /* (Shift) F6 */
  1457.   Shift | FctKey | 0xc4,    /* (Shift) F7 */
  1458.   Shift | FctKey | 0xc5,    /* (Shift) F8 */
  1459.   Shift | FctKey | 0xc6,    /* (Shift) F9 */
  1460.   Shift | FctKey | 0xc7,    /* (Shift) F10 */
  1461.   Ctrl | FctKey | 0xbe,        /* (Ctrl) F1 */
  1462.   Ctrl | FctKey | 0xbf,        /* (Ctrl) F2 */
  1463.  
  1464.   /* --------------- 60 to 6f --------------- */
  1465.   Ctrl | FctKey | 0xc0,        /* (Ctrl) F3 */
  1466.   Ctrl | FctKey | 0xc1,        /* (Ctrl) F4 */
  1467.   Ctrl | FctKey | 0xc2,        /* (Ctrl) F5 */
  1468.   Ctrl | FctKey | 0xc3,        /* (Ctrl) F6 */
  1469.   Ctrl | FctKey | 0xc4,        /* (Ctrl) F7 */
  1470.   Ctrl | FctKey | 0xc5,        /* (Ctrl) F8 */
  1471.   Ctrl | FctKey | 0xc6,        /* (Ctrl) F9 */
  1472.   Ctrl | FctKey | 0xc7,        /* (Ctrl) F10 */
  1473.   Alt | FctKey | 0xbe,        /* (Alt) F1 */
  1474.   Alt | FctKey | 0xbf,        /* (Alt) F2 */
  1475.   Alt | FctKey | 0xc0,        /* (Alt) F3 */
  1476.   Alt | FctKey | 0xc1,        /* (Alt) F4 */
  1477.   Alt | FctKey | 0xc2,        /* (Alt) F5 */
  1478.   Alt | FctKey | 0xc3,        /* (Alt) F6 */
  1479.   Alt | FctKey | 0xc4,        /* (Alt) F7 */
  1480.   Alt | FctKey | 0xc5,        /* (Alt) F8 */
  1481.  
  1482.   /* --------------- 70 to 7f --------------- */
  1483.   Alt | FctKey | 0xc6,        /* (Alt) F9 */
  1484.   Alt | FctKey | 0xc7,        /* (Alt) F10 */
  1485.   Ctrl | FctKey | 0x6d,        /* (Ctrl) Sys Rq */
  1486.   Ctrl | KeyPad | 4,        /* (Ctrl) Left */
  1487.   Ctrl | KeyPad | 6,        /* (Ctrl) Right */
  1488.   Ctrl | KeyPad | 1,        /* (Ctrl) End */
  1489.   Ctrl | KeyPad | 3,        /* (Ctrl) Page Down */
  1490.   Ctrl | KeyPad | 7,        /* (Ctrl) Home */
  1491.   Alt | Map | 1,        /* '1' */
  1492.   Alt | Map | 2,        /* '2' */
  1493.   Alt | Map | 3,        /* '3' */
  1494.   Alt | Map | 4,        /* '4' */
  1495.   Alt | Map | 5,        /* '5' */
  1496.   Alt | Map | 6,        /* '6' */
  1497.   Alt | Map | 7,        /* '7' */
  1498.   Alt | Map | 8,        /* '8' */
  1499.  
  1500.   /* --------------- 80 to 8f --------------- */
  1501.   Alt | Map | 9,        /* '9' */
  1502.   Alt | Map | 10,        /* '0' */
  1503.   Alt | Map | 11,        /* '-' */
  1504.   Alt | Map | 12,        /* '=' */
  1505.   Ctrl | KeyPad | 9,        /* (Ctrl) Page Up */
  1506.   FctKey | 0xc8,        /* F11 */
  1507.   FctKey | 0xc9,        /* F12 */
  1508.   Shift | FctKey | 0xc8,    /* (Shift) F11 */
  1509.   Shift | FctKey | 0xc9,    /* (Shift) F12 */
  1510.   Ctrl | FctKey | 0xc8,        /* (Ctrl) F11 */
  1511.   Ctrl | FctKey | 0xc9,        /* (Ctrl) F12 */
  1512.   Alt | FctKey | 0xc8,        /* (Alt) F11 */
  1513.   Alt | FctKey | 0xc9,        /* (Alt) F12 */
  1514.   Ctrl | KeyPad | 8,        /* (Ctrl) Up */
  1515.   Ctrl | Grey | 2,        /* (Ctrl) Grey - */
  1516.   Ctrl | KeyPad | 5,        /* (Ctrl) Keypad 5 */
  1517.  
  1518.   /* --------------- 90 to 9f --------------- */
  1519.   Ctrl | Grey | 3,        /* (Ctrl) Grey + */
  1520.   Ctrl | KeyPad | 2,        /* (Ctrl) Down */
  1521.   Ctrl | KeyPad | 0,        /* (Ctrl) Insert */
  1522.   Ctrl | KeyPad | 10,        /* (Ctrl) Delete */
  1523.   Ctrl | FctKey | 0x09,        /* (Ctrl) Tab */
  1524.   Ctrl | Grey | 0,        /* (Ctrl) Grey / */
  1525.   Ctrl | Grey | 1,        /* (Ctrl) Grey * */
  1526.   Alt | FctKey | 0x50,        /* (Alt) Home */
  1527.   Alt | FctKey | 0x52,        /* (Alt) Up */
  1528.   Alt | FctKey | 0x55,        /* (Alt) Page Up */
  1529.   Ignore,            /* NO KEY */
  1530.   Alt | FctKey | 0x51,        /* (Alt) Left */
  1531.   Ignore,            /* NO KEY */
  1532.   Alt | FctKey | 0x53,        /* (Alt) Right */
  1533.   Ignore,            /* NO KEY */
  1534.   Alt | FctKey | 0x57,        /* (Alt) End */
  1535.  
  1536.   /* --------------- a0 to af --------------- */
  1537.   Alt | KeyPad | 2,        /* (Alt) Down */
  1538.   Alt | KeyPad | 3,        /* (Alt) Page Down */
  1539.   Alt | KeyPad | 0,        /* (Alt) Insert */
  1540.   Alt | KeyPad | 10,        /* (Alt) Delete */
  1541.   Alt | Grey | 0,        /* (Alt) Grey / */
  1542.   Alt | FctKey | 0x09,        /* (Alt) Tab */
  1543.   Alt | Grey | 4        /* (Alt) Keypad Enter */
  1544. };
  1545.  
  1546. /* These bit-positions corresponds to values returned by BIOS */
  1547. #define SHIFT_P        0x0003    /* two bits! */
  1548. #define CTRL_P        0x0004
  1549. #define ALT_P        0x0008
  1550. #define SCRLOCK_P    0x0010
  1551. #define NUMLOCK_P    0x0020
  1552. #define CAPSLOCK_P    0x0040
  1553. #define ALT_GR_P    0x0800
  1554. #define SUPER_P        0x4000    /* pseudo */
  1555. #define HYPER_P        0x8000    /* pseudo */
  1556.  
  1557. static int
  1558. dos_get_modifiers (keymask)
  1559.      int *keymask;
  1560. {
  1561.   union REGS regs;
  1562.   int mask;
  1563.   int modifiers = 0;
  1564.   
  1565.   /* Calculate modifier bits */
  1566.   regs.h.ah = extended_kbd ? 0x12 : 0x02;
  1567.   int86 (0x16, ®s, ®s);
  1568.  
  1569.   if (!extended_kbd)
  1570.     {
  1571.       mask = regs.h.al & (SHIFT_P | CTRL_P | ALT_P | 
  1572.               SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P);
  1573.     }
  1574.   else
  1575.     {
  1576.       mask = regs.h.al & (SHIFT_P |
  1577.               SCRLOCK_P | NUMLOCK_P | CAPSLOCK_P);
  1578.   
  1579.       /* Do not break international keyboard support.   */
  1580.       /* When Keyb.Com is loaded, the right Alt key is  */
  1581.       /* used for accessing characters like { and }       */
  1582.       if (regs.h.ah & 2)        /* Left ALT pressed ? */
  1583.     mask |= ALT_P;
  1584.  
  1585.       if ((regs.h.ah & 8) != 0)        /* Right ALT pressed ? */
  1586.     {
  1587.       mask |= ALT_GR_P;
  1588.       if (dos_hyper_key == 1)
  1589.         {
  1590.           mask |= HYPER_P;
  1591.           modifiers |= hyper_modifier;
  1592.         }
  1593.       else if (dos_super_key == 1)
  1594.         {
  1595.           mask |= SUPER_P;
  1596.           modifiers |= super_modifier;
  1597.         }
  1598.       else if (!international_keyboard)
  1599.         {
  1600.           /* If Keyb.Com is NOT installed, let Right Alt behave
  1601.          like the Left Alt.  */
  1602.           mask &= ~ALT_GR_P;
  1603.           mask |= ALT_P;
  1604.         }
  1605.     }
  1606.       
  1607.       if (regs.h.ah & 1)        /* Left CTRL pressed ? */
  1608.     mask |= CTRL_P;
  1609.  
  1610.       if (regs.h.ah & 4)         /* Right CTRL pressed ? */
  1611.     {
  1612.       if (dos_hyper_key == 2)
  1613.         {
  1614.           mask |= HYPER_P;
  1615.           modifiers |= hyper_modifier;
  1616.         }
  1617.       else if (dos_super_key == 2)
  1618.         {
  1619.           mask |= SUPER_P;
  1620.           modifiers |= super_modifier;
  1621.         }
  1622.       else
  1623.         mask |= CTRL_P;
  1624.     }
  1625.     }
  1626.  
  1627.   if (mask & SHIFT_P)
  1628.     modifiers |= shift_modifier;
  1629.   if (mask & CTRL_P)
  1630.     modifiers |= ctrl_modifier;
  1631.   if (mask & ALT_P)
  1632.     modifiers |= meta_modifier;
  1633.  
  1634.   if (keymask)
  1635.     *keymask = mask;
  1636.   return modifiers;
  1637. }
  1638.  
  1639. #define NUM_RECENT_DOSKEYS (100)
  1640. int recent_doskeys_index;    /* Index for storing next element into recent_doskeys */
  1641. int total_doskeys;        /* Total number of elements stored into recent_doskeys */
  1642. Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */
  1643.  
  1644. DEFUN ("recent-doskeys", Frecent_doskeys, Srecent_doskeys, 0, 0, 0,
  1645.   "Return vector of last 100 keyboard input values seen in dos_rawgetc.\n\
  1646. Each input key receives two values in this vector: first the ASCII code,\n\
  1647. and then the scan code.")
  1648.      ()
  1649. {
  1650.   Lisp_Object *keys = XVECTOR (recent_doskeys)->contents;
  1651.   Lisp_Object val;
  1652.  
  1653.   if (total_doskeys < NUM_RECENT_DOSKEYS)
  1654.     return Fvector (total_doskeys, keys);
  1655.   else
  1656.     {
  1657.       val = Fvector (NUM_RECENT_DOSKEYS, keys);
  1658.       bcopy (keys + recent_doskeys_index,
  1659.          XVECTOR (val)->contents,
  1660.          (NUM_RECENT_DOSKEYS - recent_doskeys_index) * sizeof (Lisp_Object));
  1661.       bcopy (keys,
  1662.          XVECTOR (val)->contents + NUM_RECENT_DOSKEYS - recent_doskeys_index,
  1663.          recent_doskeys_index * sizeof (Lisp_Object));
  1664.       return val;
  1665.     }
  1666. }
  1667.  
  1668. /* Get a char from keyboard.  Function keys are put into the event queue.  */
  1669.  
  1670. extern void kbd_buffer_store_event (struct input_event *);
  1671.  
  1672. static int
  1673. dos_rawgetc ()
  1674. {
  1675.   struct input_event event;
  1676.   union REGS regs;
  1677.   
  1678. #ifndef HAVE_X_WINDOWS
  1679.   /* Maybe put the cursor where it should be.  */
  1680.   IT_cmgoto (selected_frame);
  1681. #endif
  1682.  
  1683.   /* The following condition is equivalent to `kbhit ()', except that
  1684.      it uses the bios to do its job.  This pleases DESQview/X.  */
  1685.   while ((regs.h.ah = extended_kbd ? 0x11 : 0x01),
  1686.      int86 (0x16, ®s, ®s),
  1687.      (regs.x.flags & 0x40) == 0)
  1688.     {
  1689.       union REGS regs;
  1690.       register unsigned char c;
  1691.       int sc, code, mask, kp_mode;
  1692.       int modifiers;
  1693.  
  1694.       regs.h.ah = extended_kbd ? 0x10 : 0x00;
  1695.       int86 (0x16, ®s, ®s);
  1696.       c = regs.h.al;
  1697.       sc = regs.h.ah;
  1698.  
  1699.       total_doskeys += 2;
  1700.       XVECTOR (recent_doskeys)->contents[recent_doskeys_index++]
  1701.     = make_number (c);
  1702.       if (recent_doskeys_index == NUM_RECENT_DOSKEYS)
  1703.     recent_doskeys_index = 0;
  1704.       XVECTOR (recent_doskeys)->contents[recent_doskeys_index++]
  1705.     = make_number (sc);
  1706.       if (recent_doskeys_index == NUM_RECENT_DOSKEYS)
  1707.     recent_doskeys_index = 0;
  1708.  
  1709.       modifiers = dos_get_modifiers (&mask);
  1710.       
  1711. #ifndef HAVE_X_WINDOWS
  1712.       if (!NILP (Vdos_display_scancodes))
  1713.     {
  1714.       char buf[11];
  1715.       sprintf (buf, "%02x:%02x*%04x",
  1716.            (unsigned) (sc&0xff), (unsigned) c, mask);
  1717.       dos_direct_output (screen_size_Y - 2, screen_size_X - 12, buf, 10);
  1718.     }
  1719. #endif
  1720.  
  1721.       if (sc == 0xe0)
  1722.     {
  1723.       switch (c)
  1724.         {
  1725.         case 10:        /* Ctrl Grey Enter */
  1726.           code = Ctrl | Grey | 4;
  1727.           break;
  1728.         case 13:        /* Grey Enter */
  1729.           code = Grey | 4;
  1730.           break;
  1731.         case '/':        /* Grey / */
  1732.           code = Grey | 0;
  1733.           break;
  1734.         default:
  1735.           continue;
  1736.         };
  1737.       c = 0;
  1738.     }
  1739.       else
  1740.     {
  1741.       if (sc >= (sizeof (ibmpc_translate_map) / sizeof (short)))
  1742.         continue;
  1743.       if ((code = ibmpc_translate_map[sc]) == Ignore)
  1744.         continue;
  1745.     }
  1746.       
  1747.       if (c == 0)
  1748.     {
  1749.         /* We only look at the keyboard Ctrl/Shift/Alt keys when
  1750.            Emacs is ready to read a key.  Therefore, if they press
  1751.            `Alt-x' when Emacs is busy, by the time we get to
  1752.            `dos_get_modifiers', they might have already released the
  1753.            Alt key, and Emacs gets just `x', which is BAD.
  1754.            However, for keys with the `Map' property set, the ASCII
  1755.            code returns zero iff Alt is pressed.  So, when we DON'T
  1756.            have to support international_keyboard, we don't have to
  1757.            distinguish between the left and  right Alt keys, and we
  1758.            can set the META modifier for any keys with the `Map'
  1759.            property if they return zero ASCII code (c = 0).  */
  1760.         if ( (code & Alt)
  1761.              || ( (code & 0xf000) == Map && !international_keyboard))
  1762.         modifiers |= meta_modifier;
  1763.       if (code & Ctrl)
  1764.         modifiers |= ctrl_modifier;
  1765.       if (code & Shift)
  1766.         modifiers |= shift_modifier;
  1767.     }
  1768.       
  1769.       switch (code & 0xf000)
  1770.     {
  1771.     case ModFct:
  1772.       if (c && !(mask & (SHIFT_P | ALT_P | CTRL_P | HYPER_P | SUPER_P)))
  1773.         return c;
  1774.       c = 0;        /* Special */
  1775.       
  1776.     case FctKey:
  1777.       if (c != 0)
  1778.         return c;
  1779.         
  1780.     case Special:
  1781.       code |= 0xff00;
  1782.       break;
  1783.       
  1784.     case Normal:
  1785.       if (sc == 0)
  1786.         {
  1787.           if (c == 0)    /* ctrl-break */
  1788.         continue;
  1789.           return c;        /* ALT-nnn */
  1790.         }
  1791.       if (!keyboard_map_all)
  1792.         {
  1793.           if (c != ' ')
  1794.         return c;
  1795.           code = c;
  1796.           break;
  1797.         }
  1798.       
  1799.     case Map:
  1800.       if (c && !(mask & ALT_P) && !((mask & SHIFT_P) && (mask & CTRL_P)))
  1801.         if (!keyboard_map_all)
  1802.           return c;
  1803.  
  1804.       code &= 0xff;
  1805.       if (mask & ALT_P && code <= 10 && code > 0 && dos_keypad_mode & 0x200)
  1806.         mask |= SHIFT_P;    /* ALT-1 => M-! etc. */
  1807.       
  1808.       if (mask & SHIFT_P)
  1809.         {
  1810.           code = keyboard->shifted[code];
  1811.           mask -= SHIFT_P;
  1812.           modifiers &= ~shift_modifier;
  1813.         }
  1814.       else
  1815.         if ((mask & ALT_GR_P) && keyboard->alt_gr && keyboard->alt_gr[code] != ' ')
  1816.           code = keyboard->alt_gr[code];
  1817.         else
  1818.           code = keyboard->unshifted[code];
  1819.       break;
  1820.  
  1821.     case KeyPad:
  1822.       code &= 0xff;
  1823.       if (c == 0xe0)    /* edit key */
  1824.         kp_mode = 3;
  1825.       else
  1826.         if ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) /* numlock on */
  1827.           kp_mode = dos_keypad_mode & 0x03;
  1828.         else
  1829.           kp_mode = (dos_keypad_mode >> 4) & 0x03;
  1830.       
  1831.       switch (kp_mode)
  1832.         {
  1833.         case 0:
  1834.           if (code == 10 && dos_decimal_point)
  1835.         return dos_decimal_point;
  1836.           return keypad_translate_map[code].char_code;
  1837.  
  1838.         case 1:
  1839.           code = 0xff00 | keypad_translate_map[code].keypad_code;
  1840.           break;
  1841.  
  1842.         case 2:
  1843.           code = keypad_translate_map[code].meta_code;
  1844.           modifiers = meta_modifier;
  1845.           break;
  1846.           
  1847.         case 3:
  1848.           code = 0xff00 | keypad_translate_map[code].editkey_code;
  1849.           break;
  1850.         }
  1851.       break;
  1852.       
  1853.     case Grey:
  1854.       code &= 0xff;
  1855.       kp_mode = ((mask & (NUMLOCK_P|CTRL_P|SHIFT_P|ALT_P)) == NUMLOCK_P) ? 0x04 : 0x40;
  1856.       if (dos_keypad_mode & kp_mode)
  1857.         code = 0xff00 | grey_key_translate_map[code].keypad_code;
  1858.       else
  1859.         code = grey_key_translate_map[code].char_code;
  1860.       break;
  1861.     }
  1862.       
  1863.     make_event:
  1864.       if (code == 0)
  1865.     continue;
  1866.       
  1867.       if (code >= 0x100)
  1868.     event.kind = non_ascii_keystroke;
  1869.       else
  1870.     event.kind = ascii_keystroke;
  1871.       event.code = code;
  1872.       event.modifiers =    modifiers;
  1873.       XSETFRAME (event.frame_or_window, selected_frame);
  1874.       event.timestamp = event_timestamp ();
  1875.       kbd_buffer_store_event (&event);
  1876.     }
  1877.  
  1878.   if (have_mouse > 0)
  1879.     {
  1880.       int but, press, x, y, ok;
  1881.  
  1882.       /* Check for mouse movement *before* buttons.  */
  1883.       mouse_check_moved ();
  1884.  
  1885.       for (but = 0; but < NUM_MOUSE_BUTTONS; but++)
  1886.     for (press = 0; press < 2; press++)
  1887.       {
  1888.         int button_num = but;
  1889.  
  1890.         if (press)
  1891.           ok = mouse_pressed (but, &x, &y);
  1892.         else
  1893.           ok = mouse_released (but, &x, &y);
  1894.         if (ok)
  1895.           {
  1896.         /* Allow a simultaneous press/release of Mouse-1 and
  1897.            Mouse-2 to simulate Mouse-3 on two-button mice.  */
  1898.         if (mouse_button_count == 2 && but < 2)
  1899.           {
  1900.             int x2, y2;    /* don't clobber original coordinates */
  1901.  
  1902.             /* If only one button is pressed, wait 100 msec and
  1903.                check again.  This way, Speedy Gonzales isn't
  1904.                punished, while the slow get their chance.  */
  1905.             if (press && mouse_pressed (1-but, &x2, &y2)
  1906.             || !press && mouse_released (1-but, &x2, &y2))
  1907.               button_num = 2;
  1908.             else
  1909.               {
  1910.             delay (100);
  1911.             if (press && mouse_pressed (1-but, &x2, &y2)
  1912.                 || !press && mouse_released (1-but, &x2, &y2))
  1913.               button_num = 2;
  1914.               }
  1915.           }
  1916.  
  1917.         event.kind = mouse_click;
  1918.         event.code = button_num;
  1919.         event.modifiers = dos_get_modifiers (0)
  1920.           | (press ? down_modifier : up_modifier);
  1921.         event.x = x;
  1922.         event.y = y;
  1923.         XSETFRAME (event.frame_or_window, selected_frame);
  1924.         event.timestamp = event_timestamp ();
  1925.         kbd_buffer_store_event (&event);
  1926.           }
  1927.       }
  1928.     }
  1929.  
  1930.   return -1;
  1931. }
  1932.  
  1933. static int prev_get_char = -1;
  1934.  
  1935. /* Return 1 if a key is ready to be read without suspending execution.  */
  1936.  
  1937. dos_keysns ()
  1938. {
  1939.   if (prev_get_char != -1)
  1940.     return 1;
  1941.   else
  1942.     return ((prev_get_char = dos_rawgetc ()) != -1);
  1943. }
  1944.  
  1945. /* Read a key.  Return -1 if no key is ready.  */
  1946.  
  1947. dos_keyread ()
  1948. {
  1949.   if (prev_get_char != -1)
  1950.     {
  1951.       int c = prev_get_char;
  1952.       prev_get_char = -1;
  1953.       return c;
  1954.     }
  1955.   else
  1956.     return dos_rawgetc ();
  1957. }
  1958.  
  1959. #ifndef HAVE_X_WINDOWS
  1960. /* See xterm.c for more info.  */
  1961. void
  1962. pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
  1963.      FRAME_PTR f;
  1964.      register int pix_x, pix_y;
  1965.      register int *x, *y;
  1966.      XRectangle *bounds;
  1967.      int noclip;
  1968. {
  1969.   if (bounds) abort ();
  1970.  
  1971.   /* Ignore clipping.  */
  1972.  
  1973.   *x = pix_x;
  1974.   *y = pix_y;
  1975. }
  1976.  
  1977. void
  1978. glyph_to_pixel_coords (f, x, y, pix_x, pix_y)
  1979.      FRAME_PTR f;
  1980.      register int x, y;
  1981.      register int *pix_x, *pix_y;
  1982. {
  1983.   *pix_x = x;
  1984.   *pix_y = y;
  1985. }
  1986.  
  1987. /* Simulation of X's menus.  Nothing too fancy here -- just make it work
  1988.    for now.
  1989.  
  1990.    Actually, I don't know the meaning of all the parameters of the functions
  1991.    here -- I only know how they are called by xmenu.c.  I could of course
  1992.    grab the nearest Xlib manual (down the hall, second-to-last door on the
  1993.    left), but I don't think it's worth the effort.  */
  1994.  
  1995. static XMenu *
  1996. IT_menu_create ()
  1997. {
  1998.   XMenu *menu;
  1999.  
  2000.   menu = (XMenu *) xmalloc (sizeof (XMenu));
  2001.   menu->allocated = menu->count = menu->panecount = menu->width = 0;
  2002.   return menu;
  2003. }
  2004.  
  2005. /* Allocate some (more) memory for MENU ensuring that there is room for one
  2006.    for item.  */
  2007.  
  2008. static void
  2009. IT_menu_make_room (XMenu *menu)
  2010. {
  2011.   if (menu->allocated == 0)
  2012.     {
  2013.       int count = menu->allocated = 10;
  2014.       menu->text = (char **) xmalloc (count * sizeof (char *));
  2015.       menu->submenu = (XMenu **) xmalloc (count * sizeof (XMenu *));
  2016.       menu->panenumber = (int *) xmalloc (count * sizeof (int));
  2017.     }
  2018.   else if (menu->allocated == menu->count)
  2019.     {
  2020.       int count = menu->allocated = menu->allocated + 10;
  2021.       menu->text
  2022.     = (char **) xrealloc (menu->text, count * sizeof (char *));
  2023.       menu->submenu
  2024.     = (XMenu **) xrealloc (menu->submenu, count * sizeof (XMenu *));
  2025.       menu->panenumber
  2026.     = (int *) xrealloc (menu->panenumber, count * sizeof (int));
  2027.     }
  2028. }
  2029.  
  2030. /* Search the given menu structure for a given pane number.  */
  2031.  
  2032. static XMenu *
  2033. IT_menu_search_pane (XMenu *menu, int pane)
  2034. {
  2035.   int i;
  2036.   XMenu *try;
  2037.  
  2038.   for (i = 0; i < menu->count; i++)
  2039.     if (menu->submenu[i])
  2040.       {
  2041.     if (pane == menu->panenumber[i])
  2042.       return menu->submenu[i];
  2043.     if ((try = IT_menu_search_pane (menu->submenu[i], pane)))
  2044.       return try;
  2045.       }
  2046.   return (XMenu *) 0;
  2047. }
  2048.  
  2049. /* Determine how much screen space a given menu needs.  */
  2050.  
  2051. static void
  2052. IT_menu_calc_size (XMenu *menu, int *width, int *height)
  2053. {
  2054.   int i, h2, w2, maxsubwidth, maxheight;
  2055.  
  2056.   maxsubwidth = 0;
  2057.   maxheight = menu->count;
  2058.   for (i = 0; i < menu->count; i++)
  2059.     {
  2060.       if (menu->submenu[i])
  2061.     {
  2062.       IT_menu_calc_size (menu->submenu[i], &w2, &h2);
  2063.       if (w2 > maxsubwidth) maxsubwidth = w2;
  2064.       if (i + h2 > maxheight) maxheight = i + h2;
  2065.     }
  2066.     }
  2067.   *width = menu->width + maxsubwidth;
  2068.   *height = maxheight;
  2069. }
  2070.  
  2071. /* Display MENU at (X,Y) using FACES.  */
  2072.  
  2073. static void
  2074. IT_menu_display (XMenu *menu, int y, int x, int *faces)
  2075. {
  2076.   int i, j, face, width;
  2077.   GLYPH *text, *p;
  2078.   char *q;
  2079.   int mx, my;
  2080.   int enabled, mousehere;
  2081.   int row, col;
  2082.  
  2083.   width = menu->width;
  2084.   text = (GLYPH *) xmalloc ((width + 2) * sizeof (GLYPH));
  2085.   ScreenGetCursor (&row, &col);
  2086.   mouse_get_xy (&mx, &my);
  2087.   IT_update_begin (selected_frame);
  2088.   for (i = 0; i < menu->count; i++)
  2089.     {
  2090.       IT_cursor_to (y + i, x);
  2091.       enabled
  2092.     = (!menu->submenu[i] && menu->panenumber[i]) || (menu->submenu[i]);
  2093.       mousehere = (y + i == my && x <= mx && mx < x + width + 2);
  2094.       face = faces[enabled + mousehere * 2];
  2095.       p = text;
  2096.       *p++ = FAST_MAKE_GLYPH (' ', face);
  2097.       for (j = 0, q = menu->text[i]; *q; j++)
  2098.     {
  2099.       if (*q > 26)
  2100.         *p++ = FAST_MAKE_GLYPH (*q++, face);
  2101.       else    /* make '^x' */
  2102.         {
  2103.           *p++ = FAST_MAKE_GLYPH ('^', face);
  2104.           j++;
  2105.           *p++ = FAST_MAKE_GLYPH (*q++ + 64, face);
  2106.         }
  2107.     }
  2108.         
  2109.       for (; j < width; j++)
  2110.     *p++ = FAST_MAKE_GLYPH (' ', face);
  2111.       *p++ = FAST_MAKE_GLYPH (menu->submenu[i] ? 16 : ' ', face);
  2112.       IT_write_glyphs (text, width + 2);
  2113.     }
  2114.   IT_update_end (selected_frame);
  2115.   IT_cursor_to (row, col);
  2116.   xfree (text);
  2117. }
  2118.  
  2119. /* --------------------------- X Menu emulation ---------------------- */
  2120.  
  2121. /* Report availability of menus.  */
  2122.  
  2123. int
  2124. have_menus_p ()
  2125. {
  2126.   return 1;
  2127. }
  2128.  
  2129. /* Create a brand new menu structure.  */
  2130.  
  2131. XMenu *
  2132. XMenuCreate (Display *foo1, Window foo2, char *foo3)
  2133. {
  2134.   return IT_menu_create ();
  2135. }
  2136.  
  2137. /* Create a new pane and place it on the outer-most level.  It is not
  2138.    clear that it should be placed out there, but I don't know what else
  2139.    to do.  */
  2140.  
  2141. int
  2142. XMenuAddPane (Display *foo, XMenu *menu, char *txt, int enable)
  2143. {
  2144.   int len;
  2145.   char *p;
  2146.  
  2147.   if (!enable)
  2148.     abort ();
  2149.  
  2150.   IT_menu_make_room (menu);
  2151.   menu->submenu[menu->count] = IT_menu_create ();
  2152.   menu->text[menu->count] = txt;
  2153.   menu->panenumber[menu->count] = ++menu->panecount;
  2154.   menu->count++;
  2155.  
  2156.   /* Adjust length for possible control characters (which will
  2157.      be written as ^x).  */
  2158.   for (len = strlen (txt), p = txt; *p; p++)
  2159.     if (*p < 27)
  2160.       len++;
  2161.  
  2162.   if (len > menu->width)
  2163.     menu->width = len;
  2164.  
  2165.   return menu->panecount;
  2166. }
  2167.  
  2168. /* Create a new item in a menu pane.  */
  2169.  
  2170. int
  2171. XMenuAddSelection (Display *bar, XMenu *menu, int pane,
  2172.            int foo, char *txt, int enable)
  2173. {
  2174.   int len;
  2175.   char *p;
  2176.  
  2177.   if (pane)
  2178.     if (!(menu = IT_menu_search_pane (menu, pane)))
  2179.       return XM_FAILURE;
  2180.   IT_menu_make_room (menu);
  2181.   menu->submenu[menu->count] = (XMenu *) 0;
  2182.   menu->text[menu->count] = txt;
  2183.   menu->panenumber[menu->count] = enable;
  2184.   menu->count++;
  2185.  
  2186.   /* Adjust length for possible control characters (which will
  2187.      be written as ^x).  */
  2188.   for (len = strlen (txt), p = txt; *p; p++)
  2189.     if (*p < 27)
  2190.       len++;
  2191.  
  2192.   if (len > menu->width)
  2193.     menu->width = len;
  2194.  
  2195.   return XM_SUCCESS;
  2196. }
  2197.  
  2198. /* Decide where the menu would be placed if requested at (X,Y).  */
  2199.  
  2200. void
  2201. XMenuLocate (Display *foo0, XMenu *menu, int foo1, int foo2, int x, int y,
  2202.          int *ulx, int *uly, int *width, int *height)
  2203. {
  2204.   IT_menu_calc_size (menu, width, height);
  2205.   *ulx = x + 1;
  2206.   *uly = y;
  2207.   *width += 2;
  2208. }
  2209.  
  2210. struct IT_menu_state
  2211. {
  2212.   void *screen_behind;
  2213.   XMenu *menu;
  2214.   int pane;
  2215.   int x, y;
  2216. };
  2217.  
  2218.  
  2219. /* Display menu, wait for user's response, and return that response.  */
  2220.  
  2221. int
  2222. XMenuActivate (Display *foo, XMenu *menu, int *pane, int *selidx,
  2223.            int x0, int y0, unsigned ButtonMask, char **txt)
  2224. {
  2225.   struct IT_menu_state *state;
  2226.   int statecount;
  2227.   int x, y, i, b;
  2228.   int screensize;
  2229.   int faces[4], selectface;
  2230.   int leave, result, onepane;
  2231.   int title_faces[4];        /* face to display the menu title */
  2232.   int buffers_num_deleted = 0;
  2233.  
  2234.   /* Just in case we got here without a mouse present...  */
  2235.   if (have_mouse <= 0)
  2236.     return XM_IA_SELECT;
  2237.   /* Don't allow non-positive x0 and y0, lest the menu will wrap
  2238.      around the display.  */
  2239.   if (x0 <= 0)
  2240.     x0 = 1;
  2241.   if (y0 <= 0)
  2242.     y0 = 1;
  2243.  
  2244.   state = alloca (menu->panecount * sizeof (struct IT_menu_state));
  2245.   screensize = screen_size * 2;
  2246.   faces[0]
  2247.     = compute_glyph_face (selected_frame,
  2248.               face_name_id_number
  2249.               (selected_frame,
  2250.                intern ("msdos-menu-passive-face")),
  2251.               0);
  2252.   faces[1]
  2253.     = compute_glyph_face (selected_frame,
  2254.               face_name_id_number
  2255.               (selected_frame,
  2256.                intern ("msdos-menu-active-face")),
  2257.               0);
  2258.   selectface
  2259.     = face_name_id_number (selected_frame, intern ("msdos-menu-select-face"));
  2260.   faces[2] = compute_glyph_face (selected_frame, selectface, faces[0]);
  2261.   faces[3] = compute_glyph_face (selected_frame, selectface, faces[1]);
  2262.  
  2263.   /* Make sure the menu title is always displayed with
  2264.      `msdos-menu-active-face', no matter where the mouse pointer is.  */
  2265.   for (i = 0; i < 4; i++)
  2266.     title_faces[i] = faces[3];
  2267.  
  2268.   statecount = 1;
  2269.  
  2270.   /* Don't let the title for the "Buffers" popup menu include a
  2271.      digit (which is ugly).
  2272.      
  2273.      This is a terrible kludge, but I think the "Buffers" case is
  2274.      the only one where the title includes a number, so it doesn't
  2275.      seem to be necessary to make this more general.  */
  2276.   if (strncmp (menu->text[0], "Buffers 1", 9) == 0)
  2277.     {
  2278.       menu->text[0][7] = '\0';
  2279.       buffers_num_deleted = 1;
  2280.     }
  2281.   state[0].menu = menu;
  2282.   mouse_off ();
  2283.   ScreenRetrieve (state[0].screen_behind = xmalloc (screensize));
  2284.  
  2285.   /* Turn off the cursor.  Otherwise it shows through the menu
  2286.      panes, which is ugly.  */
  2287.   IT_display_cursor (0);
  2288.  
  2289.   IT_menu_display (menu, y0 - 1, x0 - 1, title_faces); /* display menu title */
  2290.   if (buffers_num_deleted)
  2291.     menu->text[0][7] = ' ';
  2292.   if ((onepane = menu->count == 1 && menu->submenu[0]))
  2293.     {
  2294.       menu->width = menu->submenu[0]->width;
  2295.       state[0].menu = menu->submenu[0];
  2296.     }
  2297.   else
  2298.     {
  2299.       state[0].menu = menu;
  2300.     }
  2301.   state[0].x = x0 - 1;
  2302.   state[0].y = y0;
  2303.   state[0].pane = onepane;
  2304.  
  2305.   mouse_last_x = -1;  /* A hack that forces display.  */
  2306.   leave = 0;
  2307.   while (!leave)
  2308.     {
  2309.       if (!mouse_visible) mouse_on ();
  2310.       mouse_check_moved ();
  2311.       if (selected_frame->mouse_moved)
  2312.     {
  2313.       selected_frame->mouse_moved = 0;
  2314.       result = XM_IA_SELECT;
  2315.       mouse_get_xy (&x, &y);
  2316.       for (i = 0; i < statecount; i++)
  2317.         if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2)
  2318.           {
  2319.         int dy = y - state[i].y;
  2320.         if (0 <= dy && dy < state[i].menu->count)
  2321.           {
  2322.             if (!state[i].menu->submenu[dy])
  2323.               if (state[i].menu->panenumber[dy])
  2324.             result = XM_SUCCESS;
  2325.               else
  2326.             result = XM_IA_SELECT;
  2327.             *pane = state[i].pane - 1;
  2328.             *selidx = dy;
  2329.             /* We hit some part of a menu, so drop extra menus that
  2330.                have been opened.  That does not include an open and
  2331.                active submenu.  */
  2332.             if (i != statecount - 2
  2333.             || state[i].menu->submenu[dy] != state[i+1].menu)
  2334.               while (i != statecount - 1)
  2335.             {
  2336.               statecount--;
  2337.               mouse_off ();
  2338.               ScreenUpdate (state[statecount].screen_behind);
  2339.               if (screen_virtual_segment)
  2340.                 dosv_refresh_virtual_screen (0, screen_size);
  2341.               xfree (state[statecount].screen_behind);
  2342.             }
  2343.             if (i == statecount - 1 && state[i].menu->submenu[dy])
  2344.               {
  2345.             IT_menu_display (state[i].menu,
  2346.                      state[i].y,
  2347.                      state[i].x,
  2348.                      faces);
  2349.             state[statecount].menu = state[i].menu->submenu[dy];
  2350.             state[statecount].pane = state[i].menu->panenumber[dy];
  2351.             mouse_off ();
  2352.             ScreenRetrieve (state[statecount].screen_behind
  2353.                     = xmalloc (screensize));
  2354.             state[statecount].x
  2355.               = state[i].x + state[i].menu->width + 2;
  2356.             state[statecount].y = y;
  2357.             statecount++;              
  2358.               }
  2359.           }
  2360.           }
  2361.       IT_menu_display (state[statecount - 1].menu,
  2362.                state[statecount - 1].y,
  2363.                state[statecount - 1].x,
  2364.                faces);
  2365.     }
  2366.       for (b = 0; b < mouse_button_count; b++)
  2367.     {
  2368.       (void) mouse_pressed (b, &x, &y);
  2369.       if (mouse_released (b, &x, &y))
  2370.         leave = 1;
  2371.     }
  2372.     }
  2373.  
  2374.   mouse_off ();
  2375.   ScreenUpdate (state[0].screen_behind);
  2376.   if (screen_virtual_segment)
  2377.     dosv_refresh_virtual_screen (0, screen_size);
  2378.   while (statecount--)
  2379.     xfree (state[statecount].screen_behind);
  2380.   IT_display_cursor (1);    /* turn cursor back on */
  2381.   return result;
  2382. }
  2383.  
  2384. /* Dispose of a menu.  */
  2385.  
  2386. void
  2387. XMenuDestroy (Display *foo, XMenu *menu)
  2388. {
  2389.   int i;
  2390.   if (menu->allocated)
  2391.     {
  2392.       for (i = 0; i < menu->count; i++)
  2393.     if (menu->submenu[i])
  2394.       XMenuDestroy (foo, menu->submenu[i]);
  2395.       xfree (menu->text);
  2396.       xfree (menu->submenu);
  2397.       xfree (menu->panenumber);
  2398.     }
  2399.   xfree (menu);
  2400. }
  2401.  
  2402. int
  2403. x_pixel_width (struct frame *f)
  2404. {
  2405.   return FRAME_WIDTH (f);
  2406. }
  2407.  
  2408. int
  2409. x_pixel_height (struct frame *f)
  2410. {
  2411.   return FRAME_HEIGHT (f);
  2412. }
  2413. #endif /* !HAVE_X_WINDOWS */
  2414.  
  2415. /* ----------------------- DOS / UNIX conversion --------------------- */
  2416.  
  2417. void msdos_downcase_filename (unsigned char *);
  2418.  
  2419. /* Destructively turn backslashes into slashes.  */
  2420.  
  2421. void
  2422. dostounix_filename (p)
  2423.      register char *p;
  2424. {
  2425.   msdos_downcase_filename (p);
  2426.  
  2427.   while (*p)
  2428.     {
  2429.       if (*p == '\\')
  2430.     *p = '/';
  2431.       p++;
  2432.     }
  2433. }
  2434.  
  2435. /* Destructively turn slashes into backslashes.  */
  2436.  
  2437. void
  2438. unixtodos_filename (p)
  2439.      register char *p;
  2440. {
  2441.   if (p[1] == ':' && *p >= 'A' && *p <= 'Z')
  2442.     {
  2443.       *p += 'a' - 'A';
  2444.       p += 2;
  2445.     }
  2446.  
  2447.   while (*p)
  2448.     {
  2449.       if (*p == '/')
  2450.     *p = '\\';
  2451.       p++;
  2452.     }
  2453. }
  2454.  
  2455. /* Get the default directory for a given drive.  0=def, 1=A, 2=B, ...  */
  2456.  
  2457. int
  2458. getdefdir (drive, dst)
  2459.      int drive;
  2460.      char *dst;
  2461. {
  2462.   char in_path[4], *p = in_path;
  2463.   int e = errno;
  2464.  
  2465.   /* Generate "X:." (when drive is X) or "." (when drive is 0).  */
  2466.   if (drive != 0)
  2467.     {
  2468.       *p++ = drive + 'A' - 1;
  2469.       *p++ = ':';
  2470.     }
  2471.  
  2472.   *p++ = '.';
  2473.   *p = '\0';
  2474.   errno = 0;
  2475.   _fixpath (in_path, dst);
  2476.   if (errno)
  2477.     return 0;
  2478.  
  2479.   msdos_downcase_filename (dst);
  2480.  
  2481.   errno = e;
  2482.   return 1;
  2483. }
  2484.  
  2485. /* Remove all CR's that are followed by a LF.  */
  2486.  
  2487. int
  2488. crlf_to_lf (n, buf)
  2489.      register int n;
  2490.      register unsigned char *buf;
  2491. {
  2492.   unsigned char *np = buf;
  2493.   unsigned char *startp = buf;
  2494.   unsigned char *endp = buf + n;
  2495.  
  2496.   if (n == 0)
  2497.     return n;
  2498.   while (buf < endp - 1)
  2499.     {
  2500.       if (*buf == 0x0d)
  2501.     {
  2502.       if (*(++buf) != 0x0a)
  2503.         *np++ = 0x0d;
  2504.     }
  2505.       else
  2506.     *np++ = *buf++;
  2507.     }
  2508.   if (buf < endp)
  2509.     *np++ = *buf++;
  2510.   return np - startp;
  2511. }
  2512.  
  2513. #if defined(__DJGPP__) && __DJGPP__ == 2 && __DJGPP_MINOR__ == 0
  2514.  
  2515. /* In DJGPP v2.0, library `write' can call `malloc', which might
  2516.    cause relocation of the buffer whose address we get in ADDR.
  2517.    Here is a version of `write' that avoids calling `malloc',
  2518.    to serve us until such time as the library is fixed.
  2519.    Actually, what we define here is called `__write', because
  2520.    `write' is a stub that just jmp's to `__write' (to be
  2521.    POSIXLY-correct with respect to the global name-space).  */
  2522.  
  2523. #include <io.h>              /* for _write */
  2524. #include <libc/dosio.h>       /* for __file_handle_modes[] */
  2525.  
  2526. static char xbuf[64 * 1024];  /* DOS cannot write more in one chunk */
  2527.  
  2528. #define XBUF_END (xbuf + sizeof (xbuf) - 1)
  2529.  
  2530. int
  2531. __write (int handle, const void *buffer, size_t count)
  2532. {
  2533.   if (count == 0)
  2534.     return 0;
  2535.  
  2536.   if(__file_handle_modes[handle] & O_BINARY)
  2537.     return _write (handle, buffer, count);
  2538.   else
  2539.     {
  2540.       char *xbp = xbuf;
  2541.       const char *bp = buffer;
  2542.       int total_written = 0;
  2543.       int nmoved = 0, ncr = 0;
  2544.  
  2545.       while (count)
  2546.     {
  2547.       /* The next test makes sure there's space for at least 2 more
  2548.          characters in xbuf[], so both CR and LF can be put there.  */
  2549.       if (xbp < XBUF_END)
  2550.         {
  2551.           if (*bp == '\n')
  2552.         {
  2553.           ncr++;
  2554.           *xbp++ = '\r';
  2555.         }
  2556.           *xbp++ = *bp++;
  2557.           nmoved++;
  2558.           count--;
  2559.         }
  2560.       if (xbp >= XBUF_END || !count)
  2561.         {
  2562.           size_t to_write = nmoved + ncr;
  2563.           int written = _write (handle, xbuf, to_write);
  2564.  
  2565.           if (written == -1)
  2566.         return -1;
  2567.           else
  2568.         total_written += nmoved;  /* CRs aren't counted in ret value */
  2569.  
  2570.           /* If some, but not all were written (disk full?), return
  2571.          an estimate of the total written bytes not counting CRs.  */
  2572.           if (written < to_write)
  2573.         return total_written - (to_write - written) * nmoved/to_write;
  2574.  
  2575.           nmoved = 0;
  2576.           ncr = 0;
  2577.           xbp = xbuf;
  2578.         }
  2579.     }
  2580.       return total_written;
  2581.     }
  2582. }
  2583.  
  2584. /* A low-level file-renaming function which works around Windows 95 bug.
  2585.    This is pulled directly out of DJGPP v2.01 library sources, and only
  2586.    used when you compile with DJGPP v2.0.  */
  2587.  
  2588. #include <io.h>
  2589.  
  2590. int _rename(const char *old, const char *new)
  2591. {
  2592.   __dpmi_regs r;
  2593.   int olen    = strlen(old) + 1;
  2594.   int i;
  2595.   int use_lfn = _USE_LFN;
  2596.   char tempfile[FILENAME_MAX];
  2597.   const char *orig = old;
  2598.   int lfn_fd = -1;
  2599.  
  2600.   r.x.dx = __tb_offset;
  2601.   r.x.di = __tb_offset + olen;
  2602.   r.x.ds = r.x.es = __tb_segment;
  2603.  
  2604.   if (use_lfn)
  2605.     {
  2606.       /* Windows 95 bug: for some filenames, when you rename
  2607.      file -> file~ (as in Emacs, to leave a backup), the
  2608.      short 8+3 alias doesn't change, which effectively
  2609.      makes OLD and NEW the same file.  We must rename
  2610.      through a temporary file to work around this.  */
  2611.  
  2612.       char *pbase = 0, *p;
  2613.       static char try_char[] = "abcdefghijklmnopqrstuvwxyz012345789";
  2614.       int idx = sizeof(try_char) - 1;
  2615.  
  2616.       /* Generate a temporary name.  Can't use `tmpnam', since $TMPDIR
  2617.      might point to another drive, which will fail the DOS call.  */
  2618.       strcpy(tempfile, old);
  2619.       for (p = tempfile; *p; p++) /* ensure temporary is on the same drive */
  2620.     if (*p == '/' || *p == '\\' || *p == ':')
  2621.       pbase = p;
  2622.       if (pbase)
  2623.     pbase++;
  2624.       else
  2625.     pbase = tempfile;
  2626.       strcpy(pbase, "X$$djren$$.$$temp$$");
  2627.  
  2628.       do
  2629.     {
  2630.       if (idx <= 0)
  2631.         return -1;
  2632.       *pbase = try_char[--idx];
  2633.     } while (_chmod(tempfile, 0) != -1);
  2634.  
  2635.       r.x.ax = 0x7156;
  2636.       _put_path2(tempfile, olen);
  2637.       _put_path(old);
  2638.       __dpmi_int(0x21, &r);
  2639.       if (r.x.flags & 1)
  2640.     {
  2641.       errno = __doserr_to_errno(r.x.ax);
  2642.       return -1;
  2643.     }
  2644.  
  2645.       /* Now create a file with the original name.  This will
  2646.      ensure that NEW will always have a 8+3 alias
  2647.      different from that of OLD.  (Seems to be required
  2648.      when NameNumericTail in the Registry is set to 0.)  */
  2649.       lfn_fd = _creat(old, 0);
  2650.  
  2651.       olen = strlen(tempfile) + 1;
  2652.       old  = tempfile;
  2653.       r.x.di = __tb_offset + olen;
  2654.     }
  2655.  
  2656.   for (i=0; i<2; i++)
  2657.     {
  2658.       if(use_lfn)
  2659.     r.x.ax = 0x7156;
  2660.       else
  2661.     r.h.ah = 0x56;
  2662.       _put_path2(new, olen);
  2663.       _put_path(old);
  2664.       __dpmi_int(0x21, &r);
  2665.       if(r.x.flags & 1)
  2666.     {
  2667.       if (r.x.ax == 5 && i == 0) /* access denied */
  2668.         remove(new);         /* and try again */
  2669.       else
  2670.         {
  2671.           errno = __doserr_to_errno(r.x.ax);
  2672.  
  2673.           /* Restore to original name if we renamed it to temporary.  */
  2674.           if (use_lfn)
  2675.         {
  2676.           if (lfn_fd != -1)
  2677.             {
  2678.               _close (lfn_fd);
  2679.               remove (orig);
  2680.             }
  2681.           _put_path2(orig, olen);
  2682.           _put_path(tempfile);
  2683.           r.x.ax = 0x7156;
  2684.           __dpmi_int(0x21, &r);
  2685.         }
  2686.           return -1;
  2687.         }
  2688.     }
  2689.       else
  2690.     break;
  2691.     }
  2692.  
  2693.   /* Success.  Delete the file possibly created to work
  2694.      around the Windows 95 bug.  */
  2695.   if (lfn_fd != -1)
  2696.     return (_close (lfn_fd) == 0) ? remove (orig) : -1;
  2697.   return 0;
  2698. }
  2699.  
  2700. #endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */
  2701.  
  2702. DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names,
  2703.   0, 0, 0,
  2704.   "Return non-nil if long file names are supported on MSDOS.")
  2705.   ()
  2706. {
  2707.   return (_USE_LFN ? Qt : Qnil);
  2708. }
  2709.  
  2710. /* Convert alphabetic characters in a filename to lower-case.  */
  2711.  
  2712. void
  2713. msdos_downcase_filename (p)
  2714.      register unsigned char *p;
  2715. {
  2716.   /* Always lower-case drive letters a-z, even if the filesystem
  2717.      preserves case in filenames.
  2718.      This is so MSDOS filenames could be compared by string comparison
  2719.      functions that are case-sensitive.  Even case-preserving filesystems
  2720.      do not distinguish case in drive letters.  */
  2721.   if (p[1] == ':' && *p >= 'A' && *p <= 'Z')
  2722.     {
  2723.       *p += 'a' - 'A';
  2724.       p += 2;
  2725.     }
  2726.  
  2727.   /* Under LFN we expect to get pathnames in their true case.  */
  2728.   if (NILP (Fmsdos_long_file_names ()))
  2729.     for ( ; *p; p++)
  2730.       if (*p >= 'A' && *p <= 'Z')
  2731.     *p += 'a' - 'A';
  2732. }
  2733.  
  2734. DEFUN ("msdos-downcase-filename", Fmsdos_downcase_filename, Smsdos_downcase_filename,
  2735.        1, 1, 0,
  2736.   "Convert alphabetic characters in FILENAME to lower case and return that.\n\
  2737. When long filenames are supported, doesn't change FILENAME.\n\
  2738. If FILENAME is not a string, returns nil.\n\
  2739. The argument object is never altered--the value is a copy.")
  2740.   (filename)
  2741.      Lisp_Object filename;
  2742. {
  2743.   Lisp_Object tem;
  2744.  
  2745.   if (! STRINGP (filename))
  2746.     return Qnil;
  2747.  
  2748.   tem = Fcopy_sequence (filename);
  2749.   msdos_downcase_filename (XSTRING (tem)->data);
  2750.   return tem;
  2751. }
  2752.  
  2753. /* The Emacs root directory as determined by init_environment.  */
  2754.  
  2755. static char emacsroot[MAXPATHLEN];
  2756.  
  2757. char *
  2758. rootrelativepath (rel)
  2759.      char *rel;
  2760. {
  2761.   static char result[MAXPATHLEN + 10];
  2762.  
  2763.   strcpy (result, emacsroot);
  2764.   strcat (result, "/");
  2765.   strcat (result, rel);
  2766.   return result;
  2767. }
  2768.  
  2769. /* Define a lot of environment variables if not already defined.  Don't
  2770.    remove anything unless you know what you're doing -- lots of code will
  2771.    break if one or more of these are missing.  */
  2772.  
  2773. void
  2774. init_environment (argc, argv, skip_args)
  2775.      int argc;
  2776.      char **argv;
  2777.      int skip_args;
  2778. {
  2779.   char *s, *t, *root;
  2780.   int len;
  2781.   static const char * const tempdirs[] = {
  2782.     "$TMPDIR", "$TEMP", "$TMP", "c:/"
  2783.   };
  2784.   int i;
  2785.   const int imax = sizeof (tempdirs) / sizeof (tempdirs[0]);
  2786.  
  2787.   /* Make sure they have a usable $TMPDIR.  Many Emacs functions use
  2788.      temporary files and assume "/tmp" if $TMPDIR is unset, which
  2789.      will break on DOS/Windows.  Refuse to work if we cannot find
  2790.      a directory, not even "c:/", usable for that purpose.  */
  2791.   for (i = 0; i < imax ; i++)
  2792.     {
  2793.       const char *tmp = tempdirs[i];
  2794.  
  2795.       if (*tmp == '$')
  2796.     tmp = getenv (tmp + 1);
  2797.       /* Note that `access' can lie to us if the directory resides on a
  2798.      read-only filesystem, like CD-ROM or a write-protected floppy.
  2799.      The only way to be really sure is to actually create a file and
  2800.      see if it succeeds.  But I think that's too much to ask.  */
  2801.       if (tmp && access (tmp, D_OK) == 0)
  2802.     {
  2803.       setenv ("TMPDIR", tmp, 1);
  2804.       break;
  2805.     }
  2806.     }
  2807.   if (i >= imax)
  2808.     cmd_error_internal
  2809.       (Fcons (Qerror,
  2810.           Fcons (build_string ("no usable temporary directories found!!"),
  2811.              Qnil)),
  2812.        "While setting TMPDIR: ");
  2813.  
  2814.   /* Find our root from argv[0].  Assuming argv[0] is, say,
  2815.      "c:/emacs/bin/emacs.exe" our root will be "c:/emacs".  */
  2816.   root = alloca (MAXPATHLEN + 20);
  2817.   _fixpath (argv[0], root);
  2818.   msdos_downcase_filename (root);
  2819.   len = strlen (root);
  2820.   while (len > 0 && root[len] != '/' && root[len] != ':')
  2821.     len--;
  2822.   root[len] = '\0';
  2823.   if (len > 4
  2824.       && (strcmp (root + len - 4, "/bin") == 0
  2825.       || strcmp (root + len - 4, "/src") == 0)) /* under a debugger */
  2826.     root[len - 4] = '\0';
  2827.   else
  2828.     strcpy (root, "c:/emacs");  /* let's be defensive */
  2829.   len = strlen (root);
  2830.   strcpy (emacsroot, root);
  2831.  
  2832.   /* We default HOME to our root.  */
  2833.   setenv ("HOME", root, 0);
  2834.  
  2835.   /* We default EMACSPATH to root + "/bin".  */
  2836.   strcpy (root + len, "/bin");
  2837.   setenv ("EMACSPATH", root, 0);
  2838.  
  2839.   /* I don't expect anybody to ever use other terminals so the internal
  2840.      terminal is the default.  */
  2841.   setenv ("TERM", "internal", 0);
  2842.  
  2843. #ifdef HAVE_X_WINDOWS
  2844.   /* Emacs expects DISPLAY to be set.  */
  2845.   setenv ("DISPLAY", "unix:0.0", 0);
  2846. #endif
  2847.  
  2848.   /* SHELL is a bit tricky -- COMSPEC is the closest we come, but we must
  2849.      downcase it and mirror the backslashes.  */
  2850.   s = getenv ("COMSPEC");
  2851.   if (!s) s = "c:/command.com";
  2852.   t = alloca (strlen (s) + 1);
  2853.   strcpy (t, s);
  2854.   dostounix_filename (t);
  2855.   setenv ("SHELL", t, 0);
  2856.  
  2857.   /* PATH is also downcased and backslashes mirrored.  */
  2858.   s = getenv ("PATH");
  2859.   if (!s) s = "";
  2860.   t = alloca (strlen (s) + 3);
  2861.   /* Current directory is always considered part of MsDos's path but it is
  2862.      not normally mentioned.  Now it is.  */
  2863.   strcat (strcpy (t, ".;"), s);
  2864.   dostounix_filename (t); /* Not a single file name, but this should work.  */
  2865.   setenv ("PATH", t, 1);
  2866.  
  2867.   /* In some sense all dos users have root privileges, so...  */
  2868.   setenv ("USER", "root", 0);
  2869.   setenv ("NAME", getenv ("USER"), 0);
  2870.  
  2871.   /* Time zone determined from country code.  To make this possible, the
  2872.      country code may not span more than one time zone.  In other words,
  2873.      in the USA, you lose.  */
  2874.   if (!getenv ("TZ"))
  2875.     switch (dos_country_code)
  2876.       {
  2877.       case 31:            /* Belgium */
  2878.       case 32:            /* The Netherlands */
  2879.       case 33:            /* France */
  2880.       case 34:            /* Spain */
  2881.       case 36:            /* Hungary */
  2882.       case 38:            /* Yugoslavia (or what's left of it?) */
  2883.       case 39:            /* Italy */
  2884.       case 41:            /* Switzerland */
  2885.       case 42:            /* Tjekia */
  2886.       case 45:            /* Denmark */
  2887.       case 46:            /* Sweden */
  2888.       case 47:            /* Norway */
  2889.       case 48:            /* Poland */
  2890.       case 49:            /* Germany */
  2891.     /* Daylight saving from last Sunday in March to last Sunday in
  2892.        September, both at 2AM.  */
  2893.     setenv ("TZ", "MET-01METDST-02,M3.5.0/02:00,M9.5.0/02:00", 0);
  2894.     break;
  2895.       case 44:            /* United Kingdom */
  2896.       case 351:            /* Portugal */
  2897.       case 354:            /* Iceland */
  2898.     setenv ("TZ", "GMT+00", 0);
  2899.     break;
  2900.       case 81:            /* Japan */
  2901.       case 82:            /* Korea */
  2902.     setenv ("TZ", "JST-09", 0);
  2903.     break;
  2904.       case 90:            /* Turkey */
  2905.       case 358:            /* Finland */
  2906.     setenv ("TZ", "EET-02", 0);
  2907.     break;
  2908.       case 972:            /* Israel */
  2909.     /* This is an approximation.  (For exact rules, use the
  2910.        `zoneinfo/israel' file which comes with DJGPP, but you need
  2911.        to install it in `/usr/share/zoneinfo/' directory first.)  */
  2912.     setenv ("TZ", "IST-02IDT-03,M4.1.6/00:00,M9.5.6/01:00", 0);
  2913.     break;
  2914.       }
  2915.   tzset ();
  2916. }
  2917.  
  2918.  
  2919.  
  2920. static int break_stat;     /* BREAK check mode status.    */
  2921. static int stdin_stat;     /* stdin IOCTL status.        */
  2922.  
  2923. #if __DJGPP__ < 2
  2924.  
  2925. /* These must be global.  */
  2926. static _go32_dpmi_seginfo ctrl_break_vector;
  2927. static _go32_dpmi_registers ctrl_break_regs;
  2928. static int ctrlbreakinstalled = 0;
  2929.  
  2930. /* Interrupt level detection of Ctrl-Break.  Don't do anything fancy here!  */
  2931.  
  2932. void
  2933. ctrl_break_func (regs)
  2934.      _go32_dpmi_registers *regs;
  2935. {
  2936.   Vquit_flag = Qt;
  2937. }
  2938.  
  2939. void
  2940. install_ctrl_break_check ()
  2941. {
  2942.   if (!ctrlbreakinstalled)
  2943.     {
  2944.       /* Don't press Ctrl-Break if you don't have either DPMI or Emacs
  2945.      was compiler with Djgpp 1.11 maintenance level 5 or later!  */
  2946.       ctrlbreakinstalled = 1;
  2947.       ctrl_break_vector.pm_offset = (int) ctrl_break_func;
  2948.       _go32_dpmi_allocate_real_mode_callback_iret (&ctrl_break_vector,
  2949.                            &ctrl_break_regs);
  2950.       _go32_dpmi_set_real_mode_interrupt_vector (0x1b, &ctrl_break_vector);
  2951.     }
  2952. }
  2953.  
  2954. #endif /* __DJGPP__ < 2 */
  2955.  
  2956. /* Turn off Dos' Ctrl-C checking and inhibit interpretation of
  2957.    control chars by DOS.   Determine the keyboard type.  */
  2958.  
  2959. int
  2960. dos_ttraw ()
  2961. {
  2962.   union REGS inregs, outregs;
  2963.   static int first_time = 1;
  2964.   
  2965.   break_stat = getcbrk ();
  2966.   setcbrk (0);
  2967. #if __DJGPP__ < 2
  2968.   install_ctrl_break_check ();
  2969. #endif
  2970.  
  2971.   if (first_time)
  2972.     {
  2973.       inregs.h.ah = 0xc0;
  2974.       int86 (0x15, &inregs, &outregs);
  2975.       extended_kbd = (!outregs.x.cflag) && (outregs.h.ah == 0);
  2976.   
  2977.       have_mouse = 0;
  2978.  
  2979.       if (internal_terminal
  2980. #ifdef HAVE_X_WINDOWS
  2981.       && inhibit_window_system
  2982. #endif
  2983.       )
  2984.     {
  2985.       inregs.x.ax = 0x0021;
  2986.       int86 (0x33, &inregs, &outregs);
  2987.       have_mouse = (outregs.x.ax & 0xffff) == 0xffff;
  2988.       if (!have_mouse)
  2989.         {
  2990.           /* Reportedly, the above doesn't work for some mouse drivers.  There
  2991.          is an additional detection method that should work, but might be
  2992.          a little slower.  Use that as an alternative.  */
  2993.           inregs.x.ax = 0x0000;
  2994.           int86 (0x33, &inregs, &outregs);
  2995.           have_mouse = (outregs.x.ax & 0xffff) == 0xffff;
  2996.         }
  2997.  
  2998.       if (have_mouse)
  2999.         {
  3000.           have_mouse = 1;    /* enable mouse */
  3001.           mouse_visible = 0;
  3002.           
  3003.           if (outregs.x.bx == 3)
  3004.         {
  3005.           mouse_button_count = 3;
  3006.           mouse_button_translate[0] = 0; /* Left */
  3007.           mouse_button_translate[1] = 2; /* Middle */
  3008.           mouse_button_translate[2] = 1; /* Right */
  3009.         }
  3010.           else
  3011.         {
  3012.           mouse_button_count = 2;
  3013.           mouse_button_translate[0] = 0;
  3014.           mouse_button_translate[1] = 1;
  3015.         }
  3016.           mouse_position_hook = &mouse_get_pos;
  3017.           mouse_init ();
  3018.         }
  3019.     }
  3020.  
  3021.       first_time = 0;
  3022.  
  3023. #if __DJGPP__ >= 2
  3024.  
  3025.       stdin_stat = setmode (fileno (stdin), O_BINARY);
  3026.       return (stdin_stat != -1);
  3027.     }
  3028.   else
  3029.     return (setmode (fileno (stdin), O_BINARY) != -1);
  3030.  
  3031. #else /* __DJGPP__ < 2 */
  3032.  
  3033.     }
  3034.  
  3035.   /* I think it is wrong to overwrite `stdin_stat' every time
  3036.      but the first one this function is called, but I don't
  3037.      want to change the way it used to work in v1.x.--EZ  */
  3038.  
  3039.   inregs.x.ax = 0x4400;        /* Get IOCTL status. */
  3040.   inregs.x.bx = 0x00;        /* 0 = stdin. */
  3041.   intdos (&inregs, &outregs);
  3042.   stdin_stat = outregs.h.dl;
  3043.  
  3044.   inregs.x.dx = stdin_stat | 0x0020; /* raw mode */
  3045.   inregs.x.ax = 0x4401;        /* Set IOCTL status */
  3046.   intdos (&inregs, &outregs);
  3047.   return !outregs.x.cflag;
  3048.  
  3049. #endif /* __DJGPP__ < 2 */
  3050. }
  3051.  
  3052. /*  Restore status of standard input and Ctrl-C checking.  */
  3053.  
  3054. int
  3055. dos_ttcooked ()
  3056. {
  3057.   union REGS inregs, outregs;
  3058.  
  3059.   setcbrk (break_stat);
  3060.   mouse_off ();
  3061.  
  3062. #if __DJGPP__ >= 2
  3063.  
  3064.   return (setmode (fileno (stdin), stdin_stat) != -1);
  3065.  
  3066. #else  /* not __DJGPP__ >= 2 */
  3067.  
  3068.   inregs.x.ax = 0x4401;    /* Set IOCTL status.    */
  3069.   inregs.x.bx = 0x00;    /* 0 = stdin.        */
  3070.   inregs.x.dx = stdin_stat;
  3071.   intdos (&inregs, &outregs);
  3072.   return !outregs.x.cflag;
  3073.  
  3074. #endif /* not __DJGPP__ >= 2 */
  3075. }
  3076.  
  3077.  
  3078. /* Run command as specified by ARGV in directory DIR.
  3079.    The command is run with input from TEMPIN, output to
  3080.    file TEMPOUT and stderr to TEMPERR.  */
  3081.  
  3082. int
  3083. run_msdos_command (argv, working_dir, tempin, tempout, temperr, envv)
  3084.      unsigned char **argv;
  3085.      const char *working_dir;
  3086.      int tempin, tempout, temperr;
  3087.      char **envv;
  3088. {
  3089.   char *saveargv1, *saveargv2, *lowcase_argv0, *pa, *pl;
  3090.   char oldwd[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS.  */
  3091.   int msshell, result = -1;
  3092.   int inbak, outbak, errbak;
  3093.   int x, y;
  3094.   Lisp_Object cmd;
  3095.  
  3096.   /* Get current directory as MSDOS cwd is not per-process.  */
  3097.   getwd (oldwd);
  3098.  
  3099.   /* If argv[0] is the shell, it might come in any lettercase.
  3100.      Since `Fmember' is case-sensitive, we need to downcase
  3101.      argv[0], even if we are on case-preserving filesystems.  */
  3102.   lowcase_argv0 = alloca (strlen (argv[0]) + 1);
  3103.   for (pa = argv[0], pl = lowcase_argv0; *pa; pl++)
  3104.     {
  3105.       *pl = *pa++;
  3106.       if (*pl >= 'A' && *pl <= 'Z')
  3107.     *pl += 'a' - 'A';
  3108.     }
  3109.   *pl = '\0';
  3110.  
  3111.   cmd = Ffile_name_nondirectory (build_string (lowcase_argv0));
  3112.   msshell = !NILP (Fmember (cmd, Fsymbol_value (intern ("msdos-shells"))))
  3113.     && !strcmp ("-c", argv[1]);
  3114.   if (msshell)
  3115.     {
  3116.       saveargv1 = argv[1];
  3117.       saveargv2 = argv[2];
  3118.       argv[1] = "/c";
  3119.       if (argv[2])
  3120.     {
  3121.       char *p = alloca (strlen (argv[2]) + 1);
  3122.  
  3123.       strcpy (argv[2] = p, saveargv2);
  3124.       while (*p && isspace (*p))
  3125.         p++;
  3126.       while (*p && !isspace (*p))
  3127.         if (*p == '/')
  3128.           *p++ = '\\';
  3129.         else
  3130.           p++;
  3131.     }
  3132.     }
  3133.  
  3134.   chdir (working_dir);
  3135.   inbak = dup (0);
  3136.   outbak = dup (1);
  3137.   errbak = dup (2);
  3138.   if (inbak < 0 || outbak < 0 || errbak < 0)
  3139.     goto done; /* Allocation might fail due to lack of descriptors.  */
  3140.  
  3141.   if (have_mouse > 0)
  3142.     mouse_get_xy (&x, &y);
  3143.  
  3144.   dos_ttcooked ();    /* do it here while 0 = stdin */
  3145.   
  3146.   dup2 (tempin, 0);
  3147.   dup2 (tempout, 1);
  3148.   dup2 (temperr, 2);
  3149.  
  3150. #if __DJGPP__ > 1
  3151.  
  3152.   if (msshell && !argv[3])
  3153.     {
  3154.       /* MS-DOS native shells are too restrictive.  For starters, they
  3155.      cannot grok commands longer than 126 characters.  In DJGPP v2
  3156.      and later, `system' is much smarter, so we'll call it instead.  */
  3157.  
  3158.       const char *cmnd;
  3159.  
  3160.       /* A shell gets a single argument--its full command
  3161.      line--whose original was saved in `saveargv2'.  */
  3162.  
  3163.       /* Don't let them pass empty command lines to `system', since
  3164.      with some shells it will try to invoke an interactive shell,
  3165.      which will hang Emacs.  */
  3166.       for (cmnd = saveargv2; *cmnd && isspace (*cmnd); cmnd++)
  3167.     ;
  3168.       if (*cmnd)
  3169.     {
  3170.       extern char **environ;
  3171.       int save_system_flags = __system_flags;
  3172.  
  3173.       /* Request the most powerful version of `system'.  We need
  3174.          all the help we can get to avoid calling stock DOS shells.  */
  3175.       __system_flags =  (__system_redirect
  3176.                  | __system_use_shell
  3177.                  | __system_allow_multiple_cmds
  3178.                  | __system_allow_long_cmds
  3179.                  | __system_handle_null_commands
  3180.                  | __system_emulate_chdir);
  3181.  
  3182.       environ = envv;
  3183.       result = system (cmnd);
  3184.       __system_flags = save_system_flags;
  3185.     }
  3186.       else
  3187.     result = 0;    /* emulate Unixy shell behavior with empty cmd line */
  3188.     }
  3189.   else
  3190.  
  3191. #endif /* __DJGPP__ > 1 */
  3192.  
  3193.   result = spawnve (P_WAIT, argv[0], argv, envv);
  3194.   
  3195.   dup2 (inbak, 0);
  3196.   dup2 (outbak, 1);
  3197.   dup2 (errbak, 2);
  3198.   close (inbak);
  3199.   close (outbak);
  3200.   close (errbak);
  3201.  
  3202.   dos_ttraw ();
  3203.   if (have_mouse > 0)
  3204.     {
  3205.       mouse_init ();
  3206.       mouse_moveto (x, y);
  3207.     }
  3208.  
  3209.   /* Some programs might change the meaning of the highest bit of the
  3210.      text attribute byte, so we get blinking characters instead of the
  3211.      bright background colors.  Restore that.  */
  3212.   bright_bg ();
  3213.   
  3214.  done:
  3215.   chdir (oldwd);
  3216.   if (msshell)
  3217.     {
  3218.       argv[1] = saveargv1;
  3219.       argv[2] = saveargv2;
  3220.     }
  3221.   return result;
  3222. }
  3223.  
  3224. croak (badfunc)
  3225.      char *badfunc;
  3226. {
  3227.   fprintf (stderr, "%s not yet implemented\r\n", badfunc);
  3228.   reset_sys_modes ();
  3229.   exit (1);
  3230. }
  3231.  
  3232. #if __DJGPP__ < 2
  3233.  
  3234. /* ------------------------- Compatibility functions -------------------
  3235.  *    gethostname
  3236.  *    gettimeofday
  3237.  */
  3238.  
  3239. /* Hostnames for a pc are not really funny,
  3240.    but they are used in change log so we emulate the best we can.  */
  3241.  
  3242. gethostname (p, size)
  3243.      char *p;
  3244.      int size;
  3245. {
  3246.   char *q = egetenv ("HOSTNAME");
  3247.  
  3248.   if (!q) q = "pc";
  3249.   strcpy (p, q);
  3250.   return 0;
  3251. }
  3252.  
  3253. /* When time zones are set from Ms-Dos too many C-libraries are playing
  3254.    tricks with time values.  We solve this by defining our own version
  3255.    of `gettimeofday' bypassing GO32.  Our version needs to be initialized
  3256.    once and after each call to `tzset' with TZ changed.  That is 
  3257.    accomplished by aliasing tzset to init_gettimeofday. */
  3258.  
  3259. static struct tm time_rec;
  3260.  
  3261. int
  3262. gettimeofday (struct timeval *tp, struct timezone *tzp)
  3263. {
  3264.   if (tp)
  3265.     {
  3266.       struct time t;
  3267.       struct tm tm;
  3268.       
  3269.       gettime (&t);
  3270.       if (t.ti_hour < time_rec.tm_hour) /* midnight wrap */
  3271.     {
  3272.       struct date d;
  3273.       getdate (&d);
  3274.       time_rec.tm_year = d.da_year - 1900;
  3275.       time_rec.tm_mon = d.da_mon - 1;
  3276.       time_rec.tm_mday = d.da_day;
  3277.     }
  3278.       
  3279.       time_rec.tm_hour = t.ti_hour;
  3280.       time_rec.tm_min = t.ti_min;
  3281.       time_rec.tm_sec = t.ti_sec;
  3282.  
  3283.       tm = time_rec;
  3284.       tm.tm_gmtoff = dos_timezone_offset;
  3285.       
  3286.       tp->tv_sec = mktime (&tm);    /* may modify tm */
  3287.       tp->tv_usec = t.ti_hund * (1000000 / 100);
  3288.     }
  3289.   /* Ignore tzp; it's obsolescent.  */
  3290.   return 0;
  3291. }
  3292.  
  3293. #endif /* __DJGPP__ < 2 */
  3294.  
  3295. /*
  3296.  * A list of unimplemented functions that we silently ignore.
  3297.  */
  3298.  
  3299. #if __DJGPP__ < 2
  3300. unsigned alarm (s) unsigned s; {}
  3301. fork () { return 0; }
  3302. int kill (x, y) int x, y; { return -1; }
  3303. nice (p) int p; {}
  3304. void volatile pause () {}
  3305. sigsetmask (x) int x; { return 0; }
  3306. sigblock (mask) int mask; { return 0; } 
  3307. #endif
  3308.  
  3309. void request_sigio (void) {}
  3310. setpgrp () {return 0; }
  3311. setpriority (x,y,z) int x,y,z; { return 0; }
  3312. void unrequest_sigio (void) {}
  3313.  
  3314. #if __DJGPP__ > 1
  3315.  
  3316. #ifdef POSIX_SIGNALS
  3317.  
  3318. /* Augment DJGPP library POSIX signal functions.  This is needed
  3319.    as of DJGPP v2.01, but might be in the library in later releases. */
  3320.  
  3321. #include <libc/bss.h>
  3322.  
  3323. /* A counter to know when to re-initialize the static sets.  */
  3324. static int sigprocmask_count = -1;
  3325.  
  3326. /* Which signals are currently blocked (initially none).  */
  3327. static sigset_t current_mask;
  3328.  
  3329. /* Which signals are pending (initially none).  */
  3330. static sigset_t pending_signals;
  3331.  
  3332. /* Previous handlers to restore when the blocked signals are unblocked.  */
  3333. typedef void (*sighandler_t)(int);
  3334. static sighandler_t prev_handlers[320];
  3335.  
  3336. /* A signal handler which just records that a signal occured
  3337.    (it will be raised later, if and when the signal is unblocked).  */
  3338. static void
  3339. sig_suspender (signo)
  3340.      int signo;
  3341. {
  3342.   sigaddset (&pending_signals, signo);
  3343. }
  3344.  
  3345. int
  3346. sigprocmask (how, new_set, old_set)
  3347.      int how;
  3348.      const sigset_t *new_set;
  3349.      sigset_t *old_set;
  3350. {
  3351.   int signo;
  3352.   sigset_t new_mask;
  3353.  
  3354.   /* If called for the first time, initialize.  */
  3355.   if (sigprocmask_count != __bss_count)
  3356.     {
  3357.       sigprocmask_count = __bss_count;
  3358.       sigemptyset (&pending_signals);
  3359.       sigemptyset (¤t_mask);
  3360.       for (signo = 0; signo < 320; signo++)
  3361.     prev_handlers[signo] = SIG_ERR;
  3362.     }
  3363.  
  3364.   if (old_set)
  3365.     *old_set = current_mask;
  3366.  
  3367.   if (new_set == 0)
  3368.     return 0;
  3369.  
  3370.   if (how != SIG_BLOCK && how != SIG_UNBLOCK && how != SIG_SETMASK)
  3371.     {
  3372.       errno = EINVAL;
  3373.       return -1;
  3374.     }
  3375.  
  3376.   sigemptyset (&new_mask);
  3377.  
  3378.   /* DJGPP supports upto 320 signals.  */
  3379.   for (signo = 0; signo < 320; signo++)
  3380.     {
  3381.       if (sigismember (¤t_mask, signo))
  3382.     sigaddset (&new_mask, signo);
  3383.       else if (sigismember (new_set, signo) && how != SIG_UNBLOCK)
  3384.     {
  3385.       sigaddset (&new_mask, signo);
  3386.  
  3387.       /* SIGKILL is silently ignored, as on other platforms.  */
  3388.       if (signo != SIGKILL && prev_handlers[signo] == SIG_ERR)
  3389.         prev_handlers[signo] = signal (signo, sig_suspender);
  3390.     }
  3391.       if ((   how == SIG_UNBLOCK
  3392.           && sigismember (&new_mask, signo)
  3393.           && sigismember (new_set, signo))
  3394.       || (how == SIG_SETMASK
  3395.           && sigismember (&new_mask, signo)
  3396.           && !sigismember (new_set, signo)))
  3397.     {
  3398.       sigdelset (&new_mask, signo);
  3399.       if (prev_handlers[signo] != SIG_ERR)
  3400.         {
  3401.           signal (signo, prev_handlers[signo]);
  3402.           prev_handlers[signo] = SIG_ERR;
  3403.         }
  3404.       if (sigismember (&pending_signals, signo))
  3405.         {
  3406.           sigdelset (&pending_signals, signo);
  3407.           raise (signo);
  3408.         }
  3409.     }
  3410.     }
  3411.   current_mask = new_mask;
  3412.   return 0;
  3413. }
  3414.  
  3415. #else /* not POSIX_SIGNALS */
  3416.  
  3417. sigsetmask (x) int x; { return 0; }
  3418. sigblock (mask) int mask; { return 0; } 
  3419.  
  3420. #endif /* not POSIX_SIGNALS */
  3421. #endif /* __DJGPP__ > 1 */
  3422.  
  3423. #ifndef HAVE_SELECT
  3424. #include "sysselect.h"
  3425.  
  3426. #ifndef EMACS_TIME_ZERO_OR_NEG_P
  3427. #define EMACS_TIME_ZERO_OR_NEG_P(time)    \
  3428.   ((long)(time).tv_sec < 0        \
  3429.    || ((time).tv_sec == 0        \
  3430.        && (long)(time).tv_usec <= 0))
  3431. #endif
  3432.  
  3433. /* This yields the rest of the current time slice to the task manager.
  3434.    It should be called by any code which knows that it has nothing
  3435.    useful to do except idle.
  3436.  
  3437.    I don't use __dpmi_yield here, since versions of library before 2.02
  3438.    called Int 2Fh/AX=1680h there in a way that would wedge the DOS box
  3439.    on some versions of Windows 9X.  */
  3440.  
  3441. void
  3442. dos_yield_time_slice (void)
  3443. {
  3444.   _go32_dpmi_registers r;
  3445.  
  3446.   r.x.ax = 0x1680;
  3447.   r.x.ss = r.x.sp = r.x.flags = 0;
  3448.   _go32_dpmi_simulate_int (0x2f, &r);
  3449.   if (r.h.al == 0x80)
  3450.     errno = ENOSYS;
  3451. }
  3452.  
  3453. /* Only event queue is checked.  */
  3454. /* We don't have to call timer_check here
  3455.    because wait_reading_process_input takes care of that.  */
  3456. int
  3457. sys_select (nfds, rfds, wfds, efds, timeout)
  3458.      int nfds;
  3459.      SELECT_TYPE *rfds, *wfds, *efds;
  3460.      EMACS_TIME *timeout;
  3461. {
  3462.   int check_input;
  3463.   struct time t;
  3464.  
  3465.   check_input = 0;
  3466.   if (rfds)
  3467.     {
  3468.       check_input = FD_ISSET (0, rfds);
  3469.       FD_ZERO (rfds);
  3470.     }
  3471.   if (wfds)
  3472.     FD_ZERO (wfds);
  3473.   if (efds)
  3474.     FD_ZERO (efds);
  3475.  
  3476.   if (nfds != 1)
  3477.     abort ();
  3478.   
  3479.   /* If we are looking only for the terminal, with no timeout,
  3480.      just read it and wait -- that's more efficient.  */
  3481.   if (!timeout)
  3482.     {
  3483.       while (!detect_input_pending ())
  3484.     {
  3485.       dos_yield_time_slice ();
  3486.     }
  3487.     }
  3488.   else
  3489.     {
  3490.       EMACS_TIME clnow, cllast, cldiff;
  3491.  
  3492.       gettime (&t);
  3493.       EMACS_SET_SECS_USECS (cllast, t.ti_sec, t.ti_hund * 10000L);
  3494.  
  3495.       while (!check_input || !detect_input_pending ())
  3496.     {
  3497.       gettime (&t);
  3498.       EMACS_SET_SECS_USECS (clnow, t.ti_sec, t.ti_hund * 10000L);
  3499.       EMACS_SUB_TIME (cldiff, clnow, cllast);
  3500.  
  3501.       /* When seconds wrap around, we assume that no more than
  3502.          1 minute passed since last `gettime'.  */
  3503.       if (EMACS_TIME_NEG_P (cldiff))
  3504.         EMACS_SET_SECS (cldiff, EMACS_SECS (cldiff) + 60);
  3505.       EMACS_SUB_TIME (*timeout, *timeout, cldiff);
  3506.  
  3507.       /* Stop when timeout value crosses zero.  */
  3508.       if (EMACS_TIME_ZERO_OR_NEG_P (*timeout))
  3509.         return 0;
  3510.       cllast = clnow;
  3511.       dos_yield_time_slice ();
  3512.     }
  3513.     }
  3514.   
  3515.   FD_SET (0, rfds);
  3516.   return 1;
  3517. }
  3518. #endif
  3519.  
  3520. /*
  3521.  * Define overlaid functions:
  3522.  *
  3523.  *    chdir -> sys_chdir
  3524.  *    tzset -> init_gettimeofday
  3525.  *    abort -> dos_abort
  3526.  */
  3527.  
  3528. #ifdef chdir
  3529. #undef chdir
  3530. extern int chdir ();
  3531.  
  3532. int
  3533. sys_chdir (path)
  3534.      const char* path;
  3535. {
  3536.   int len = strlen (path);
  3537.   char *tmp = (char *)path;
  3538.  
  3539.   if (*tmp && tmp[1] == ':')
  3540.     {
  3541.       if (getdisk () != tolower (tmp[0]) - 'a')
  3542.     setdisk (tolower (tmp[0]) - 'a');
  3543.       tmp += 2;    /* strip drive: KFS 1995-07-06 */
  3544.       len -= 2;
  3545.     }
  3546.   
  3547.   if (len > 1 && (tmp[len - 1] == '/'))
  3548.     {
  3549.       char *tmp1 = (char *) alloca (len + 1);
  3550.       strcpy (tmp1, tmp);
  3551.       tmp1[len - 1] = 0;
  3552.       tmp = tmp1;
  3553.     }
  3554.   return chdir (tmp);
  3555. }
  3556. #endif
  3557.  
  3558. #ifdef tzset
  3559. #undef tzset
  3560. extern void tzset (void);
  3561.  
  3562. void
  3563. init_gettimeofday ()
  3564. {
  3565.   time_t ltm, gtm;
  3566.   struct tm *lstm;
  3567.  
  3568.   tzset ();
  3569.   ltm = gtm = time (NULL);
  3570.   ltm = mktime (lstm = localtime (<m));
  3571.   gtm = mktime (gmtime (>m));
  3572.   time_rec.tm_hour = 99;    /* force gettimeofday to get date */
  3573.   time_rec.tm_isdst = lstm->tm_isdst;
  3574.   dos_timezone_offset = time_rec.tm_gmtoff = (int)(gtm - ltm) / 60;
  3575. }
  3576. #endif
  3577.  
  3578. #ifdef abort
  3579. #undef abort
  3580. void
  3581. dos_abort (file, line)
  3582.      char *file;
  3583.      int  line;
  3584. {
  3585.   char buffer1[200], buffer2[400];
  3586.   int i, j;
  3587.   
  3588.   sprintf (buffer1, "<EMACS FATAL ERROR IN %s LINE %d>", file, line);
  3589.   for (i = j = 0; buffer1[i]; i++) {
  3590.     buffer2[j++] = buffer1[i];
  3591.     buffer2[j++] = 0x70;
  3592.   }
  3593.   dosmemput (buffer2, j, (int)ScreenPrimary);
  3594.   ScreenSetCursor (2, 0);
  3595.   abort ();
  3596. }
  3597. #else
  3598. void
  3599. abort ()
  3600. {
  3601.   dos_ttcooked ();
  3602.   ScreenSetCursor (10, 0);
  3603.   cputs ("\r\n\nEmacs aborted!\r\n");
  3604. #if __DJGPP__ > 1
  3605. #if __DJGPP__ == 2 && __DJGPP_MINOR__ < 2
  3606.   if (screen_virtual_segment)
  3607.     dosv_refresh_virtual_screen (2 * 10 * screen_size_X, 4 * screen_size_X);
  3608. #endif /* __DJGPP_MINOR__ < 2 */
  3609.   /* Generate traceback, so we could tell whodunit.  */
  3610.   signal (SIGINT, SIG_DFL);
  3611.   __asm__ __volatile__ ("movb $0x1b,%al;call ___djgpp_hw_exception");
  3612. #endif
  3613.   exit (2);
  3614. }
  3615. #endif
  3616.  
  3617. /* The following two are required so that customization feature
  3618.    won't complain about unbound variables.  */
  3619. #ifndef HAVE_X_WINDOWS
  3620. /* Search path for bitmap files (xfns.c).  */
  3621. Lisp_Object Vx_bitmap_file_path;
  3622. #endif
  3623. #ifndef subprocesses
  3624. /* Nonzero means delete a process right away if it exits (process.c).  */
  3625. static int delete_exited_processes;
  3626. #endif
  3627.  
  3628. syms_of_msdos ()
  3629. {
  3630.   recent_doskeys = Fmake_vector (make_number (NUM_RECENT_DOSKEYS), Qnil);
  3631.   staticpro (&recent_doskeys);
  3632. #ifndef HAVE_X_WINDOWS
  3633.   DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
  3634.     "List of directories to search for bitmap files for X.");
  3635.   Vx_bitmap_file_path = decode_env_path ((char *) 0, ".");
  3636.  
  3637.   /* The following two are from xfns.c:  */
  3638.   Qbackground_color = intern ("background-color");
  3639.   staticpro (&Qbackground_color);
  3640.   Qforeground_color = intern ("foreground-color");
  3641.   staticpro (&Qforeground_color);
  3642. #endif
  3643. #ifndef subprocesses
  3644.   DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
  3645.     "*Non-nil means delete processes immediately when they exit.\n\
  3646. nil means don't delete them until `list-processes' is run.");
  3647.   delete_exited_processes = 0;
  3648. #endif
  3649.  
  3650.   defsubr (&Srecent_doskeys);
  3651.   defsubr (&Smsdos_long_file_names);
  3652.   defsubr (&Smsdos_downcase_filename);
  3653. }
  3654.  
  3655. #endif /* MSDOS */
  3656.  
  3657.