home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / dispnew.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  75KB  |  2,623 lines

  1. /* Updating of data structures for redisplay.
  2.    Copyright (C) 1985, 86, 87, 88, 93, 94 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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. #include <signal.h>
  22.  
  23. #include <config.h>
  24.  
  25. #include <stdio.h>
  26. #include <ctype.h>
  27.  
  28. #include "lisp.h"
  29. #include "termchar.h"
  30. #include "termopts.h"
  31. #include "termhooks.h"
  32. #include "cm.h"
  33. #include "dispextern.h"
  34. #include "buffer.h"
  35. #include "frame.h"
  36. #include "window.h"
  37. #include "commands.h"
  38. #include "disptab.h"
  39. #include "indent.h"
  40. #include "intervals.h"
  41.  
  42. #include "systty.h"
  43.  
  44. #ifdef HAVE_X_WINDOWS
  45. #include "xterm.h"
  46. #endif    /* HAVE_X_WINDOWS */
  47.  
  48. /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
  49. #include "systime.h"
  50.  
  51. #include <errno.h>
  52.  
  53. #ifdef USE_PROTOS
  54. #include "protos.h"
  55. #endif
  56.  
  57. #define max(a, b) ((a) > (b) ? (a) : (b))
  58. #define min(a, b) ((a) < (b) ? (a) : (b))
  59.  
  60. /* Get number of chars of output now in the buffer of a stdio stream.
  61.    This ought to be built in in stdio, but it isn't.
  62.    Some s- files override this because their stdio internals differ.  */
  63. #ifdef __GNU_LIBRARY__
  64. /* The s- file might have overridden the definition with one that works for
  65.    the system's C library.  But we are using the GNU C library, so this is
  66.    the right definition for every system.  */
  67. #ifdef GNU_LIBRARY_PENDING_OUTPUT_COUNT
  68. #define PENDING_OUTPUT_COUNT GNU_LIBRARY_PENDING_OUTPUT_COUNT
  69. #else
  70. #undef    PENDING_OUTPUT_COUNT
  71. #define    PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer)
  72. #endif
  73. #else /* not __GNU_LIBRARY__ */
  74. #ifndef PENDING_OUTPUT_COUNT
  75. #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)
  76. #endif
  77. #endif
  78.  
  79. /* Nonzero upon entry to redisplay means do not assume anything about
  80.    current contents of actual terminal frame; clear and redraw it.  */
  81.  
  82. int frame_garbaged;
  83.  
  84. /* Nonzero means last display completed.  Zero means it was preempted. */
  85.  
  86. int display_completed;
  87.  
  88. /* Lisp variable visible-bell; enables use of screen-flash
  89.    instead of audible bell.  */
  90.  
  91. int visible_bell;
  92.  
  93. /* Invert the color of the whole frame, at a low level.  */
  94.  
  95. int inverse_video;
  96.  
  97. /* Line speed of the terminal.  */
  98.  
  99. int baud_rate;
  100.  
  101. /* nil or a symbol naming the window system under which emacs is
  102.    running ('x is the only current possibility).  */
  103.  
  104. Lisp_Object Vwindow_system;
  105.  
  106. /* Version number of X windows: 10, 11 or nil.  */
  107. Lisp_Object Vwindow_system_version;
  108.  
  109. /* Vector of glyph definitions.  Indexed by glyph number,
  110.    the contents are a string which is how to output the glyph.
  111.  
  112.    If Vglyph_table is nil, a glyph is output by using its low 8 bits
  113.    as a character code.  */
  114.  
  115. Lisp_Object Vglyph_table;
  116.  
  117. /* Display table to use for vectors that don't specify their own.  */
  118.  
  119. Lisp_Object Vstandard_display_table;
  120.  
  121. /* Nonzero means reading single-character input with prompt
  122.    so put cursor on minibuffer after the prompt.
  123.    positive means at end of text in echo area;
  124.    negative means at beginning of line.  */
  125. int cursor_in_echo_area;
  126.  
  127. /* The currently selected frame.
  128.    In a single-frame version, this variable always remains 0.  */
  129.  
  130. FRAME_PTR selected_frame;
  131.  
  132. /* A frame which is not just a minibuffer, or 0 if there are no such
  133.    frames.  This is usually the most recent such frame that was
  134.    selected.  In a single-frame version, this variable always remains 0.  */
  135. FRAME_PTR last_nonminibuf_frame;
  136.  
  137. /* In a single-frame version, the information that would otherwise
  138.    exist inside frame objects lives in the following structure instead.
  139.  
  140.    NOTE: the_only_frame is not checked for garbage collection; don't
  141.    store collectible objects in any of its fields!
  142.  
  143.    You're not/The only frame in town/...  */
  144.  
  145. #ifndef MULTI_FRAME
  146. struct frame the_only_frame;
  147. #endif
  148.  
  149. /* This is a vector, made larger whenever it isn't large enough,
  150.    which is used inside `update_frame' to hold the old contents
  151.    of the FRAME_PHYS_LINES of the frame being updated.  */
  152. struct frame_glyphs **ophys_lines;
  153. /* Length of vector currently allocated.  */
  154. int ophys_lines_length;
  155.  
  156. FILE *termscript;    /* Stdio stream being used for copy of all output.  */
  157.  
  158. struct cm Wcm;        /* Structure for info on cursor positioning */
  159.  
  160. extern short ospeed;    /* Output speed (from sg_ospeed) */
  161.  
  162. int delayed_size_change;  /* 1 means SIGWINCH happened when not safe.  */
  163.  
  164. #ifdef MULTI_FRAME
  165.  
  166. DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0,
  167.   "Clear frame FRAME and output again what is supposed to appear on it.")
  168.   (frame)
  169.      Lisp_Object frame;
  170. {
  171.   FRAME_PTR f;
  172.  
  173.   CHECK_LIVE_FRAME (frame, 0);
  174.   f = XFRAME (frame);
  175.   update_begin (f);
  176.   /*  set_terminal_modes (); */
  177.   clear_frame ();
  178.   clear_frame_records (f);
  179.   update_end (f);
  180.   fflush (stdout);
  181.   windows_or_buffers_changed++;
  182.   /* Mark all windows as INaccurate,
  183.      so that every window will have its redisplay done.  */
  184.   mark_window_display_accurate (FRAME_ROOT_WINDOW (f), 0);
  185.   f->garbaged = 0;
  186.   return Qnil;
  187. }
  188.  
  189. redraw_frame (f)
  190.      FRAME_PTR f;
  191. {
  192.   Lisp_Object frame;
  193.   XSET (frame, Lisp_Frame, f);
  194.   Fredraw_frame (frame);
  195. }
  196.  
  197. #else
  198.  
  199. DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0,
  200.   "Clear frame FRAME and output again what is supposed to appear on it.")
  201.   (frame)
  202.      Lisp_Object frame;
  203. {
  204.   update_begin (0);
  205.   set_terminal_modes ();
  206.   clear_frame ();
  207.   update_end (0);
  208.   fflush (stdout);
  209.   clear_frame_records (0);
  210.   windows_or_buffers_changed++;
  211.   /* Mark all windows as INaccurate,
  212.      so that every window will have its redisplay done.  */
  213.   mark_window_display_accurate (FRAME_ROOT_WINDOW (0), 0);
  214.   return Qnil;
  215. }
  216.  
  217. #endif
  218.  
  219. DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "",
  220.   "Clear and redisplay all visible frames.")
  221.   ()
  222. {
  223.   Lisp_Object tail, frame;
  224.  
  225.   FOR_EACH_FRAME (tail, frame)
  226.     if (FRAME_VISIBLE_P (XFRAME (frame)))
  227.       Fredraw_frame (frame);
  228.  
  229.   return Qnil;
  230. }
  231.  
  232. /* This is used when frame_garbaged is set.
  233.    Redraw the individual frames marked as garbaged.  */
  234.  
  235. void
  236. redraw_garbaged_frames ()
  237. {
  238.   Lisp_Object tail, frame;
  239.  
  240.   FOR_EACH_FRAME (tail, frame)
  241.     if (FRAME_VISIBLE_P (XFRAME (frame))
  242.     && FRAME_GARBAGED_P (XFRAME (frame)))
  243.       Fredraw_frame (frame);
  244. }
  245.  
  246.  
  247. static struct frame_glyphs *
  248. make_frame_glyphs (frame, empty)
  249.      register FRAME_PTR frame;
  250.      int empty;
  251. {
  252.   register int i;
  253.   register width = FRAME_WIDTH (frame);
  254.   register height = FRAME_HEIGHT (frame);
  255.   register struct frame_glyphs *new
  256.     = (struct frame_glyphs *) xmalloc (sizeof (struct frame_glyphs));
  257.  
  258.   SET_GLYPHS_FRAME (new, frame);
  259.   new->height = height;
  260.   new->width = width;
  261.   new->used = (int *) xmalloc (height * sizeof (int));
  262.   new->glyphs = (GLYPH **) xmalloc (height * sizeof (GLYPH *));
  263.   new->charstarts = (int **) xmalloc (height * sizeof (int *));
  264.   new->highlight = (char *) xmalloc (height * sizeof (char));
  265.   new->enable = (char *) xmalloc (height * sizeof (char));
  266.   bzero (new->enable, height * sizeof (char));
  267.   new->bufp = (int *) xmalloc (height * sizeof (int));
  268.  
  269. #ifdef HAVE_X_WINDOWS
  270.   if (FRAME_X_P (frame))
  271.     {
  272.       new->top_left_x = (short *) xmalloc (height * sizeof (short));
  273.       new->top_left_y = (short *) xmalloc (height * sizeof (short));
  274.       new->pix_width = (short *) xmalloc (height * sizeof (short));
  275.       new->pix_height = (short *) xmalloc (height * sizeof (short));
  276.       new->max_ascent = (short *) xmalloc (height * sizeof (short));
  277.     }
  278. #endif
  279.  
  280.   if (empty)
  281.     {
  282.       /* Make the buffer used by decode_mode_spec.  This buffer is also
  283.          used as temporary storage when updating the frame.  See scroll.c. */
  284.       unsigned int total_glyphs = (width + 2) * sizeof (GLYPH);
  285.       unsigned int total_charstarts = (width + 2) * sizeof (int);
  286.  
  287.       new->total_contents = (GLYPH *) xmalloc (total_glyphs);
  288.       bzero (new->total_contents, total_glyphs);
  289.  
  290.       new->total_charstarts = (int *) xmalloc (total_charstarts);
  291.       bzero (new->total_charstarts, total_glyphs);
  292.     }
  293.   else
  294.     {
  295.       unsigned int total_glyphs = height * (width + 2) * sizeof (GLYPH);
  296.  
  297.       new->total_contents = (GLYPH *) xmalloc (total_glyphs);
  298.       bzero (new->total_contents, total_glyphs);
  299.       for (i = 0; i < height; i++)
  300.     new->glyphs[i] = new->total_contents + i * (width + 2) + 1;
  301.  
  302.       if (!FRAME_TERMCAP_P (frame))
  303.     {
  304.       unsigned int total_charstarts = height * (width + 2) * sizeof (int);
  305.  
  306.       new->total_charstarts = (int *) xmalloc (total_charstarts);
  307.       bzero (new->total_charstarts, total_charstarts);
  308.       for (i = 0; i < height; i++)
  309.         new->charstarts[i] = new->total_charstarts + i * (width + 2) + 1;
  310.     }
  311.       else
  312.     {
  313.       /* Without a window system, we don't really need charstarts.
  314.          So use a small amount of space to make enough data structure
  315.          to prevent crashes in display_text_line.  */
  316.       new->total_charstarts = (int *) xmalloc ((width + 2) * sizeof (int));
  317.       for (i = 0; i < height; i++)
  318.         new->charstarts[i] = new->total_charstarts;
  319.     }
  320.     }
  321.  
  322.   return new;
  323. }
  324.  
  325. void
  326. free_frame_glyphs (frame, glyphs)
  327.      FRAME_PTR frame;
  328.      struct frame_glyphs *glyphs;
  329. {
  330.   if (glyphs->total_contents)
  331.     xfree (glyphs->total_contents);
  332.   if (glyphs->total_charstarts)
  333.     xfree (glyphs->total_charstarts);
  334.  
  335.   xfree (glyphs->used);
  336.   xfree (glyphs->glyphs);
  337.   xfree (glyphs->highlight);
  338.   xfree (glyphs->enable);
  339.   xfree (glyphs->bufp);
  340.   if (glyphs->charstarts)
  341.     xfree (glyphs->charstarts);
  342.  
  343. #ifdef HAVE_X_WINDOWS
  344.   if (FRAME_X_P (frame))
  345.     {
  346.       xfree (glyphs->top_left_x);
  347.       xfree (glyphs->top_left_y);
  348.       xfree (glyphs->pix_width);
  349.       xfree (glyphs->pix_height);
  350.       xfree (glyphs->max_ascent);
  351.     }
  352. #endif
  353.  
  354.   xfree (glyphs);
  355. }
  356.  
  357. static void
  358. remake_frame_glyphs (frame)
  359.      FRAME_PTR frame;
  360. {
  361.   if (FRAME_CURRENT_GLYPHS (frame))
  362.     free_frame_glyphs (frame, FRAME_CURRENT_GLYPHS (frame));
  363.   if (FRAME_DESIRED_GLYPHS (frame))
  364.     free_frame_glyphs (frame, FRAME_DESIRED_GLYPHS (frame));
  365.   if (FRAME_TEMP_GLYPHS (frame))
  366.     free_frame_glyphs (frame, FRAME_TEMP_GLYPHS (frame));
  367.  
  368.   if (FRAME_MESSAGE_BUF (frame))
  369.     {
  370.       /* Reallocate the frame's message buffer; remember that
  371.      echo_area_glyphs may be pointing here.  */
  372.       char *old_message_buf = FRAME_MESSAGE_BUF (frame);
  373.  
  374.       FRAME_MESSAGE_BUF (frame)
  375.     = (char *) xrealloc (FRAME_MESSAGE_BUF (frame),
  376.                  FRAME_WIDTH (frame) + 1);
  377.  
  378.       if (echo_area_glyphs == old_message_buf)
  379.     echo_area_glyphs = FRAME_MESSAGE_BUF (frame);
  380.       if (previous_echo_glyphs == old_message_buf)
  381.     previous_echo_glyphs = FRAME_MESSAGE_BUF (frame);
  382.     }
  383.   else
  384.     FRAME_MESSAGE_BUF (frame)
  385.       = (char *) xmalloc (FRAME_WIDTH (frame) + 1);
  386.  
  387.   FRAME_CURRENT_GLYPHS (frame) = make_frame_glyphs (frame, 0);
  388.   FRAME_DESIRED_GLYPHS (frame) = make_frame_glyphs (frame, 0);
  389.   FRAME_TEMP_GLYPHS (frame) = make_frame_glyphs (frame, 1);
  390.   SET_FRAME_GARBAGED (frame);
  391. }
  392.  
  393. /* Return the hash code of contents of line VPOS in frame-matrix M.  */
  394.  
  395. static int
  396. line_hash_code (m, vpos)
  397.      register struct frame_glyphs *m;
  398.      int vpos;
  399. {
  400.   register GLYPH *body, *end;
  401.   register int h = 0;
  402.  
  403.   if (!m->enable[vpos])
  404.     return 0;
  405.  
  406.   /* Give all highlighted lines the same hash code
  407.      so as to encourage scrolling to leave them in place.  */
  408.   if (m->highlight[vpos])
  409.     return -1;
  410.  
  411.   body = m->glyphs[vpos];
  412.  
  413.   if (must_write_spaces)
  414.     while (1)
  415.       {
  416.     GLYPH g = *body++;
  417.  
  418.     if (g == 0)
  419.       break;
  420.     h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g - SPACEGLYPH;
  421.       }
  422.   else
  423.     while (1)
  424.       {
  425.     GLYPH g = *body++;
  426.  
  427.     if (g == 0)
  428.       break;
  429.     h = (((h << 4) + (h >> 24)) & 0x0fffffff) + g;
  430.       }
  431.  
  432.   if (h)
  433.     return h;
  434.   return 1;
  435. }
  436.  
  437. /* Return number of characters in line in M at vpos VPOS,
  438.    except don't count leading and trailing spaces
  439.    unless the terminal requires those to be explicitly output.  */
  440.  
  441. static unsigned int
  442. line_draw_cost (m, vpos)
  443.      struct frame_glyphs *m;
  444.      int vpos;
  445. {
  446.   register GLYPH *beg = m->glyphs[vpos];
  447.   register GLYPH *end = m->glyphs[vpos] + m->used[vpos];
  448.   register int i;
  449.   register int tlen = GLYPH_TABLE_LENGTH;
  450.   register Lisp_Object *tbase = GLYPH_TABLE_BASE;
  451.  
  452.   /* Ignore trailing and leading spaces if we can.  */
  453.   if (!must_write_spaces)
  454.     {
  455.       while ((end != beg) && (*end == SPACEGLYPH))
  456.     --end;
  457.       if (end == beg)
  458.     return (0); /* All blank line. */
  459.  
  460.       while (*beg == SPACEGLYPH)
  461.     ++beg;
  462.     }
  463.  
  464.   /* If we don't have a glyph-table, each glyph is one character,
  465.      so return the number of glyphs.  */
  466.   if (tbase == 0)
  467.     return end - beg;
  468.  
  469.   /* Otherwise, scan the glyphs and accumulate their total size in I.  */
  470.   i = 0;
  471.   while ((beg <= end) && *beg)
  472.     {
  473.       register GLYPH g = *beg++;
  474.  
  475.       if (GLYPH_SIMPLE_P (tbase, tlen, g))
  476.     i += 1;
  477.       else
  478.     i += GLYPH_LENGTH (tbase, g);
  479.     }
  480.   return i;
  481. }
  482.  
  483. /* The functions on this page are the interface from xdisp.c to redisplay.
  484.  
  485.    The only other interface into redisplay is through setting
  486.    FRAME_CURSOR_X (frame) and FRAME_CURSOR_Y (frame)
  487.    and SET_FRAME_GARBAGED (frame).  */
  488.  
  489. /* cancel_line eliminates any request to display a line at position `vpos' */
  490.  
  491. cancel_line (vpos, frame)
  492.      int vpos;
  493.      register FRAME_PTR frame;
  494. {
  495.   FRAME_DESIRED_GLYPHS (frame)->enable[vpos] = 0;
  496. }
  497.  
  498. clear_frame_records (frame)
  499.      register FRAME_PTR frame;
  500. {
  501.   if(FRAME_CURRENT_GLYPHS (frame))
  502.       bzero (FRAME_CURRENT_GLYPHS (frame)->enable, FRAME_HEIGHT (frame));
  503. }
  504.  
  505. /* Prepare to display on line VPOS starting at HPOS within it.  */
  506.  
  507. void
  508. get_display_line (frame, vpos, hpos)
  509.      register FRAME_PTR frame;
  510.      int vpos;
  511.      register int hpos;
  512. {
  513.   register struct frame_glyphs *glyphs;
  514.   register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame);
  515.   register GLYPH *p;
  516.  
  517.   if (vpos < 0)
  518.     abort ();
  519.  
  520.   if ((desired_glyphs->enable[vpos]) && desired_glyphs->used[vpos] > hpos)
  521.     abort ();
  522.  
  523.   if (! desired_glyphs->enable[vpos])
  524.     {
  525.       desired_glyphs->used[vpos] = 0;
  526.       desired_glyphs->highlight[vpos] = 0;
  527.       desired_glyphs->enable[vpos] = 1;
  528.     }
  529.  
  530.   if (hpos > desired_glyphs->used[vpos])
  531.     {
  532.       GLYPH *g = desired_glyphs->glyphs[vpos] + desired_glyphs->used[vpos];
  533.       GLYPH *end = desired_glyphs->glyphs[vpos] + hpos;
  534.  
  535.       desired_glyphs->used[vpos] = hpos;
  536.       while (g != end)
  537.     *g++ = SPACEGLYPH;
  538.     }
  539. }
  540.  
  541. /* Like bcopy except never gets confused by overlap.  */
  542.  
  543. void
  544. safe_bcopy (from, to, size)
  545.      char *from, *to;
  546.      int size;
  547. {
  548.   if (size <= 0 || from == to)
  549.     return;
  550.  
  551.   /* If the source and destination don't overlap, then bcopy can
  552.      handle it.  If they do overlap, but the destination is lower in
  553.      memory than the source, we'll assume bcopy can handle that.  */
  554.   if (to < from || from + size <= to)
  555.     bcopy (from, to, size);
  556.  
  557.   /* Otherwise, we'll copy from the end.  */
  558.   else
  559.     {
  560.       register char *endf = from + size;
  561.       register char *endt = to + size;
  562.  
  563.       /* If TO - FROM is large, then we should break the copy into
  564.      nonoverlapping chunks of TO - FROM bytes each.  However, if
  565.      TO - FROM is small, then the bcopy function call overhead
  566.      makes this not worth it.  The crossover point could be about
  567.      anywhere.  Since I don't think the obvious copy loop is too
  568.      bad, I'm trying to err in its favor.  */
  569.       if (to - from < 64)
  570.     {
  571.       do
  572.         *--endt = *--endf;
  573.       while (endf != from);
  574.     }
  575.       else
  576.     {
  577.       for (;;)
  578.         {
  579.           endt -= (to - from);
  580.           endf -= (to - from);
  581.  
  582.           if (endt < to)
  583.         break;
  584.  
  585.           bcopy (endf, endt, to - from);
  586.         }
  587.  
  588.       /* If SIZE wasn't a multiple of TO - FROM, there will be a
  589.          little left over.  The amount left over is
  590.          (endt + (to - from)) - to, which is endt - from.  */
  591.       bcopy (from, to, endt - from);
  592.     }
  593.     }
  594. }     
  595.  
  596. /* Rotate a vector of SIZE bytes right, by DISTANCE bytes.
  597.    DISTANCE may be negative.  */
  598.  
  599. static void
  600. rotate_vector (vector, size, distance)
  601.      char *vector;
  602.      int size;
  603.      int distance;
  604. {
  605.   char *temp = (char *) alloca (size);
  606.  
  607.   if (distance < 0)
  608.     distance += size;
  609.  
  610.   bcopy (vector, temp + distance, size - distance);
  611.   bcopy (vector + size - distance, temp, distance);
  612.   bcopy (temp, vector, size);
  613. }
  614.  
  615. /* Scroll lines from vpos FROM up to but not including vpos END
  616.    down by AMOUNT lines (AMOUNT may be negative).
  617.    Returns nonzero if done, zero if terminal cannot scroll them.  */
  618.  
  619. int
  620. scroll_frame_lines (frame, from, end, amount, newpos)
  621.      register FRAME_PTR frame;
  622.      int from, end, amount, newpos;
  623. {
  624.   register int i;
  625.   register struct frame_glyphs *current_frame
  626.     = FRAME_CURRENT_GLYPHS (frame);
  627.   int pos_adjust;
  628.   int width = FRAME_WIDTH (frame);
  629.  
  630.   if (!line_ins_del_ok)
  631.     return 0;
  632.  
  633.   if (amount == 0)
  634.     return 1;
  635.  
  636.   if (amount > 0)
  637.     {
  638.       update_begin (frame);
  639.       set_terminal_window (end + amount);
  640.       if (!scroll_region_ok)
  641.     ins_del_lines (end, -amount);
  642.       ins_del_lines (from, amount);
  643.       set_terminal_window (0);
  644.  
  645.       rotate_vector (current_frame->glyphs + from,
  646.              sizeof (GLYPH *) * (end + amount - from),
  647.              amount * sizeof (GLYPH *));
  648.  
  649.       rotate_vector (current_frame->charstarts + from,
  650.              sizeof (int *) * (end + amount - from),
  651.              amount * sizeof (int *));
  652.  
  653.       safe_bcopy (current_frame->used + from,
  654.           current_frame->used + from + amount,
  655.           (end - from) * sizeof current_frame->used[0]);
  656.  
  657.       safe_bcopy (current_frame->highlight + from,
  658.           current_frame->highlight + from + amount,
  659.           (end - from) * sizeof current_frame->highlight[0]);
  660.  
  661.       safe_bcopy (current_frame->enable + from,
  662.           current_frame->enable + from + amount,
  663.           (end - from) * sizeof current_frame->enable[0]);
  664.  
  665.       /* Adjust the lines by an amount
  666.      that puts the first of them at NEWPOS.  */
  667.       pos_adjust = newpos - current_frame->charstarts[from + amount][0];
  668.  
  669.       /* Offset each char position in the charstarts lines we moved
  670.      by pos_adjust.  */
  671.       for (i = from + amount; i < end + amount; i++)
  672.     {
  673.       int *line = current_frame->charstarts[i];
  674.       int col;
  675.       for (col = 0; col < width; col++)
  676.         if (line[col] > 0)
  677.           line[col] += pos_adjust;
  678.     }
  679.       for (i = from; i < from + amount; i++)
  680.     {
  681.       int *line = current_frame->charstarts[i];
  682.       int col;
  683.       line[0] = -1;
  684.       for (col = 0; col < width; col++)
  685.         line[col] = 0;
  686.     }
  687.  
  688.       /* Mark the lines made empty by scrolling as enabled, empty and
  689.      normal video.  */
  690.       bzero (current_frame->used + from,
  691.          amount * sizeof current_frame->used[0]);
  692.       bzero (current_frame->highlight + from,
  693.          amount * sizeof current_frame->highlight[0]);
  694.       for (i = from; i < from + amount; i++)
  695.     {
  696.       current_frame->glyphs[i][0] = '\0';
  697.       current_frame->charstarts[i][0] = -1;
  698.       current_frame->enable[i] = 1;
  699.     }
  700.  
  701.       safe_bcopy (current_frame->bufp + from,
  702.           current_frame->bufp + from + amount,
  703.           (end - from) * sizeof current_frame->bufp[0]);
  704.  
  705. #ifdef HAVE_X_WINDOWS
  706.       if (FRAME_X_P (frame))
  707.     {
  708.       safe_bcopy (current_frame->top_left_x + from,
  709.               current_frame->top_left_x + from + amount,
  710.               (end - from) * sizeof current_frame->top_left_x[0]);
  711.  
  712.       safe_bcopy (current_frame->top_left_y + from,
  713.               current_frame->top_left_y + from + amount,
  714.               (end - from) * sizeof current_frame->top_left_y[0]);
  715.  
  716.       safe_bcopy (current_frame->pix_width + from,
  717.               current_frame->pix_width + from + amount,
  718.               (end - from) * sizeof current_frame->pix_width[0]);
  719.  
  720.       safe_bcopy (current_frame->pix_height + from,
  721.               current_frame->pix_height + from + amount,
  722.               (end - from) * sizeof current_frame->pix_height[0]);
  723.  
  724.       safe_bcopy (current_frame->max_ascent + from,
  725.               current_frame->max_ascent + from + amount,
  726.               (end - from) * sizeof current_frame->max_ascent[0]);
  727.     }
  728. #endif                /* HAVE_X_WINDOWS */
  729.  
  730.       update_end (frame);
  731.     }
  732.   if (amount < 0)
  733.     {
  734.       update_begin (frame);
  735.       set_terminal_window (end);
  736.       ins_del_lines (from + amount, amount);
  737.       if (!scroll_region_ok)
  738.     ins_del_lines (end + amount, -amount);
  739.       set_terminal_window (0);
  740.  
  741.       rotate_vector (current_frame->glyphs + from + amount,
  742.              sizeof (GLYPH *) * (end - from - amount),
  743.              amount * sizeof (GLYPH *));
  744.  
  745.       rotate_vector (current_frame->charstarts + from + amount,
  746.              sizeof (int *) * (end - from - amount),
  747.              amount * sizeof (int *));
  748.  
  749.       safe_bcopy (current_frame->used + from,
  750.           current_frame->used + from + amount,
  751.           (end - from) * sizeof current_frame->used[0]);
  752.  
  753.       safe_bcopy (current_frame->highlight + from,
  754.           current_frame->highlight + from + amount,
  755.           (end - from) * sizeof current_frame->highlight[0]);
  756.  
  757.       safe_bcopy (current_frame->enable + from,
  758.           current_frame->enable + from + amount,
  759.           (end - from) * sizeof current_frame->enable[0]);
  760.  
  761.       /* Adjust the lines by an amount
  762.      that puts the first of them at NEWPOS.  */
  763.       pos_adjust = newpos - current_frame->charstarts[from + amount][0];
  764.  
  765.       /* Offset each char position in the charstarts lines we moved
  766.      by pos_adjust.  */
  767.       for (i = from + amount; i < end + amount; i++)
  768.     {
  769.       int *line = current_frame->charstarts[i];
  770.       int col;
  771.       for (col = 0; col < width; col++)
  772.         if (line[col] > 0)
  773.           line[col] += pos_adjust;
  774.     }
  775.       for (i = end + amount; i < end; i++)
  776.     {
  777.       int *line = current_frame->charstarts[i];
  778.       int col;
  779.       line[0] = -1;
  780.       for (col = 0; col < width; col++)
  781.         line[col] = 0;
  782.     }
  783.  
  784.       /* Mark the lines made empty by scrolling as enabled, empty and
  785.      normal video.  */
  786.       bzero (current_frame->used + end + amount,
  787.          - amount * sizeof current_frame->used[0]);
  788.       bzero (current_frame->highlight + end + amount,
  789.          - amount * sizeof current_frame->highlight[0]);
  790.       for (i = end + amount; i < end; i++)
  791.     {
  792.       current_frame->glyphs[i][0] = '\0';
  793.       current_frame->charstarts[i][0] = 0;
  794.       current_frame->enable[i] = 1;
  795.     }
  796.  
  797.       safe_bcopy (current_frame->bufp + from,
  798.           current_frame->bufp + from + amount,
  799.           (end - from) * sizeof current_frame->bufp[0]);
  800.  
  801. #ifdef HAVE_X_WINDOWS
  802.       if (FRAME_X_P (frame))
  803.     {
  804.       safe_bcopy (current_frame->top_left_x + from,
  805.               current_frame->top_left_x + from + amount,
  806.               (end - from) * sizeof current_frame->top_left_x[0]);
  807.  
  808.       safe_bcopy (current_frame->top_left_y + from,
  809.               current_frame->top_left_y + from + amount,
  810.               (end - from) * sizeof current_frame->top_left_y[0]);
  811.  
  812.       safe_bcopy (current_frame->pix_width + from,
  813.               current_frame->pix_width + from + amount,
  814.               (end - from) * sizeof current_frame->pix_width[0]);
  815.  
  816.       safe_bcopy (current_frame->pix_height + from,
  817.               current_frame->pix_height + from + amount,
  818.               (end - from) * sizeof current_frame->pix_height[0]);
  819.  
  820.       safe_bcopy (current_frame->max_ascent + from,
  821.               current_frame->max_ascent + from + amount,
  822.               (end - from) * sizeof current_frame->max_ascent[0]);
  823.     }
  824. #endif                /* HAVE_X_WINDOWS */
  825.  
  826.       update_end (frame);
  827.     }
  828.   return 1;
  829. }
  830.  
  831. /* After updating a window W that isn't the full frame wide,
  832.    copy all the columns that W does not occupy
  833.    into the FRAME_DESIRED_GLYPHS (frame) from the FRAME_PHYS_GLYPHS (frame)
  834.    so that update_frame will not change those columns.  */
  835.  
  836. preserve_other_columns (w)
  837.      struct window *w;
  838. {
  839.   register int vpos;
  840.   register struct frame_glyphs *current_frame, *desired_frame;
  841.   register FRAME_PTR frame = XFRAME (w->frame);
  842.   int start = XFASTINT (w->left);
  843.   int end = XFASTINT (w->left) + XFASTINT (w->width);
  844.   int bot = XFASTINT (w->top) + XFASTINT (w->height);
  845.  
  846.   current_frame = FRAME_CURRENT_GLYPHS (frame);
  847.   desired_frame = FRAME_DESIRED_GLYPHS (frame);
  848.  
  849.   for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
  850.     {
  851.       if (current_frame->enable[vpos] && desired_frame->enable[vpos])
  852.     {
  853.       if (start > 0)
  854.         {
  855.           int len;
  856.  
  857.           bcopy (current_frame->glyphs[vpos],
  858.              desired_frame->glyphs[vpos],
  859.              start * sizeof (current_frame->glyphs[vpos]));
  860.           bcopy (current_frame->charstarts[vpos],
  861.              desired_frame->charstarts[vpos],
  862.              start * sizeof (current_frame->charstarts[vpos]));
  863.           len = min (start, current_frame->used[vpos]);
  864.           if (desired_frame->used[vpos] < len)
  865.         desired_frame->used[vpos] = len;
  866.         }
  867.       if (current_frame->used[vpos] > end
  868.           && desired_frame->used[vpos] < current_frame->used[vpos])
  869.         {
  870.           while (desired_frame->used[vpos] < end)
  871.         {
  872.           int used = desired_frame->used[vpos]++;
  873.           desired_frame->glyphs[vpos][used] = SPACEGLYPH;
  874.           desired_frame->glyphs[vpos][used] = 0;
  875.         }
  876.           bcopy (current_frame->glyphs[vpos] + end,
  877.              desired_frame->glyphs[vpos] + end,
  878.              ((current_frame->used[vpos] - end)
  879.               * sizeof (current_frame->glyphs[vpos])));
  880.           bcopy (current_frame->charstarts[vpos] + end,
  881.              desired_frame->charstarts[vpos] + end,
  882.              ((current_frame->used[vpos] - end)
  883.               * sizeof (current_frame->charstarts[vpos])));
  884.           desired_frame->used[vpos] = current_frame->used[vpos];
  885.         }
  886.     }
  887.     }
  888. }
  889.  
  890. #if 0
  891.  
  892. /* If window w does not need to be updated and isn't the full frame wide,
  893.  copy all the columns that w does occupy
  894.  into the FRAME_DESIRED_LINES (frame) from the FRAME_PHYS_LINES (frame)
  895.  so that update_frame will not change those columns.
  896.  
  897.  Have not been able to figure out how to use this correctly.  */
  898.  
  899. preserve_my_columns (w)
  900.      struct window *w;
  901. {
  902.   register int vpos, fin;
  903.   register struct frame_glyphs *l1, *l2;
  904.   register FRAME_PTR frame = XFRAME (w->frame);
  905.   int start = XFASTINT (w->left);
  906.   int end = XFASTINT (w->left) + XFASTINT (w->width);
  907.   int bot = XFASTINT (w->top) + XFASTINT (w->height);
  908.  
  909.   for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
  910.     {
  911.       if ((l1 = FRAME_DESIRED_GLYPHS (frame)->glyphs[vpos + 1])
  912.       && (l2 = FRAME_PHYS_GLYPHS (frame)->glyphs[vpos + 1]))
  913.     {
  914.       if (l2->length > start && l1->length < l2->length)
  915.         {
  916.           fin = l2->length;
  917.           if (fin > end) fin = end;
  918.           while (l1->length < start)
  919.         l1->body[l1->length++] = ' ';
  920.           bcopy (l2->body + start, l1->body + start, fin - start);
  921.           l1->length = fin;
  922.         }
  923.     }
  924.     }
  925. }
  926.  
  927. #endif
  928.  
  929. /* Adjust by ADJUST the charstart values in window W
  930.    after vpos VPOS, which counts relative to the frame
  931.    (not relative to W itself).  */
  932.  
  933. void
  934. adjust_window_charstarts (w, vpos, adjust)
  935.      struct window *w;
  936.      int vpos;
  937.      int adjust;
  938. {
  939.   int left = XFASTINT (w->left);
  940.   int top = XFASTINT (w->top);
  941.   int right = left + window_internal_width (w);
  942.   int bottom = top + window_internal_height (w);
  943.   int i;
  944.  
  945.   for (i = vpos + 1; i < bottom; i++)
  946.     {
  947.       int *charstart
  948.     = FRAME_CURRENT_GLYPHS (XFRAME (WINDOW_FRAME (w)))->charstarts[i];
  949.       int j;
  950.       for (j = left; j < right; j++)
  951.     if (charstart[j] > 0)
  952.       charstart[j] += adjust;
  953.     }
  954. }
  955.  
  956. /* Check the charstarts values in the area of window W
  957.    for internal consistency.  We cannot check that they are "right";
  958.    we can only look for something nonsensical.  */
  959.  
  960. verify_charstarts (w)
  961.      struct window *w;
  962. {
  963.   FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
  964.   int i;
  965.   int top = XFASTINT (w->top);
  966.   int bottom = top + window_internal_height (w);
  967.   int left = XFASTINT (w->left);
  968.   int right = left + window_internal_width (w);
  969.   int next_line;
  970.   int truncate = (XINT (w->hscroll)
  971.           || (truncate_partial_width_windows
  972.               && (XFASTINT (w->width) < FRAME_WIDTH (f)))
  973.           || !NILP (XBUFFER (w->buffer)->truncate_lines));
  974.  
  975.   for (i = top; i < bottom; i++)
  976.     {
  977.       int j;
  978.       int last;
  979.       int *charstart = FRAME_CURRENT_GLYPHS (f)->charstarts[i];
  980.  
  981.       if (i != top)
  982.     {
  983.       if (truncate)
  984.         {
  985.           /* If we are truncating lines, allow a jump
  986.          in charstarts from one line to the next.  */
  987.           if (charstart[left] < next_line)
  988.         abort ();
  989.         }
  990.       else
  991.         {
  992.           if (charstart[left] != next_line)
  993.         abort ();
  994.         }
  995.     }
  996.  
  997.       for (j = left; j < right; j++)
  998.     if (charstart[j] > 0)
  999.       last = charstart[j];
  1000.       /* Record where the next line should start.  */
  1001.       next_line = last;
  1002.       if (BUF_ZV (XBUFFER (w->buffer)) != last)
  1003.     {
  1004.       /* If there's a newline between the two lines, count that.  */
  1005.       int endchar = *BUF_CHAR_ADDRESS (XBUFFER (w->buffer), last);
  1006.       if (endchar == '\n')
  1007.         next_line++;
  1008.     }
  1009.     }
  1010. }
  1011.  
  1012. /* On discovering that the redisplay for a window was no good,
  1013.    cancel the columns of that window, so that when the window is
  1014.    displayed over again get_display_line will not complain.  */
  1015.  
  1016. cancel_my_columns (w)
  1017.      struct window *w;
  1018. {
  1019.   register int vpos;
  1020.   register struct frame_glyphs *desired_glyphs
  1021.     = FRAME_DESIRED_GLYPHS (XFRAME (w->frame));
  1022.   register int start = XFASTINT (w->left);
  1023.   register int bot = XFASTINT (w->top) + XFASTINT (w->height);
  1024.  
  1025.   for (vpos = XFASTINT (w->top); vpos < bot; vpos++)
  1026.     if (desired_glyphs->enable[vpos]
  1027.     && desired_glyphs->used[vpos] >= start)
  1028.       desired_glyphs->used[vpos] = start;
  1029. }
  1030.  
  1031. /* These functions try to perform directly and immediately on the frame
  1032.    the necessary output for one change in the buffer.
  1033.    They may return 0 meaning nothing was done if anything is difficult,
  1034.    or 1 meaning the output was performed properly.
  1035.    They assume that the frame was up to date before the buffer
  1036.    change being displayed.  They make various other assumptions too;
  1037.    see command_loop_1 where these are called.  */
  1038.  
  1039. int
  1040. direct_output_for_insert (g)
  1041.      int g;
  1042. {
  1043.   register FRAME_PTR frame = selected_frame;
  1044.   register struct frame_glyphs *current_frame
  1045.     = FRAME_CURRENT_GLYPHS (frame);
  1046.  
  1047. #ifndef COMPILER_REGISTER_BUG
  1048.   register
  1049. #endif /* COMPILER_REGISTER_BUG */
  1050.     struct window *w = XWINDOW (selected_window);
  1051. #ifndef COMPILER_REGISTER_BUG
  1052.   register
  1053. #endif /* COMPILER_REGISTER_BUG */
  1054.     int hpos = FRAME_CURSOR_X (frame);
  1055. #ifndef COMPILER_REGISTER_BUG
  1056.   register
  1057. #endif /* COMPILER_REGISTER_BUG */
  1058.     int vpos = FRAME_CURSOR_Y (frame);
  1059.  
  1060.   /* Give up if about to continue line.  */
  1061.   if (hpos >= XFASTINT (w->left) + window_internal_width (w) - 1
  1062.     
  1063.   /* Avoid losing if cursor is in invisible text off left margin */
  1064.       || (XINT (w->hscroll) && hpos == XFASTINT (w->left))
  1065.     
  1066.   /* Give up if cursor outside window (in minibuf, probably) */
  1067.       || cursor_in_echo_area
  1068.       || FRAME_CURSOR_Y (frame) < XFASTINT (w->top)
  1069.       || FRAME_CURSOR_Y (frame) >= XFASTINT (w->top) + XFASTINT (w->height)
  1070.  
  1071.   /* Give up if cursor not really at FRAME_CURSOR_X, FRAME_CURSOR_Y */
  1072.       || !display_completed
  1073.  
  1074.   /* Give up if buffer appears in two places.  */
  1075.       || buffer_shared > 1
  1076.  
  1077. #ifdef USE_TEXT_PROPERTIES
  1078.   /* Intervals have already been adjusted, point is after the
  1079.      character that was just inserted. */
  1080.   /* Give up if character is invisible. */
  1081.   /* Give up if character has a face property.
  1082.      At the moment we only lose at end of line or end of buffer
  1083.      and only with faces that have some background */
  1084.   /* Instead of wasting time, give up if character has any text properties */
  1085.       || ! NILP (Ftext_properties_at (XFASTINT (point - 1), Qnil))
  1086. #endif
  1087.  
  1088.   /* Give up if w is minibuffer and a message is being displayed there */
  1089.       || (MINI_WINDOW_P (w) && echo_area_glyphs))
  1090.     return 0;
  1091.  
  1092.   {
  1093.     int face = 0;
  1094. #ifdef HAVE_X_WINDOWS
  1095.     int dummy;
  1096.  
  1097.     if (FRAME_X_P (frame))
  1098.       face = compute_char_face (frame, w, point - 1, -1, -1, &dummy, point, 0);
  1099. #endif
  1100.     current_frame->glyphs[vpos][hpos] = MAKE_GLYPH (frame, g, face);
  1101.     current_frame->charstarts[vpos][hpos] = point - 1;
  1102.     /* Record the entry for after the newly inserted character.  */
  1103.     current_frame->charstarts[vpos][hpos + 1] = point;
  1104.     adjust_window_charstarts (w, vpos, 1);
  1105.   }
  1106.   unchanged_modified = MODIFF;
  1107.   beg_unchanged = GPT - BEG;
  1108.   XFASTINT (w->last_point) = point;
  1109.   XFASTINT (w->last_point_x) = hpos;
  1110.   XFASTINT (w->last_modified) = MODIFF;
  1111.  
  1112.   reassert_line_highlight (0, vpos);
  1113.   write_glyphs (¤t_frame->glyphs[vpos][hpos], 1);
  1114.   fflush (stdout);
  1115.   ++FRAME_CURSOR_X (frame);
  1116.   if (hpos == current_frame->used[vpos])
  1117.     {
  1118.       current_frame->used[vpos] = hpos + 1;
  1119.       current_frame->glyphs[vpos][hpos + 1] = 0;
  1120.     }
  1121.  
  1122.   return 1;
  1123. }
  1124.  
  1125. int
  1126. direct_output_forward_char (n)
  1127.      int n;
  1128. {
  1129.   register FRAME_PTR frame = selected_frame;
  1130.   register struct window *w = XWINDOW (selected_window);
  1131.   int position;
  1132.   int hpos = FRAME_CURSOR_X (frame);
  1133.  
  1134.   /* Give up if in truncated text at end of line.  */
  1135.   if (hpos >= XFASTINT (w->left) + window_internal_width (w) - 1)
  1136.     return 0;
  1137.  
  1138.   /* Avoid losing if cursor is in invisible text off left margin
  1139.      or about to go off either side of window.  */
  1140.   if ((FRAME_CURSOR_X (frame) == XFASTINT (w->left)
  1141.        && (XINT (w->hscroll) || n < 0))
  1142.       || (n > 0
  1143.       && (FRAME_CURSOR_X (frame) + 1 >= window_internal_width (w) - 1))
  1144.       || cursor_in_echo_area)
  1145.     return 0;
  1146.   
  1147.   /* Can't use direct output if highlighting a region.  */
  1148.   if (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active))
  1149.     return 0;
  1150.  
  1151. #ifdef USE_TEXT_PROPERTIES
  1152.   /* Don't use direct output next to an invisible character
  1153.      since we might need to do something special.  */
  1154.  
  1155.   XFASTINT (position) = point;
  1156.   if (XFASTINT (position) < ZV
  1157.       && ! NILP (Fget_char_property (position,
  1158.                      Qinvisible,
  1159.                      selected_window)))
  1160.     return 0;
  1161.  
  1162.   XFASTINT (position) = point - 1;
  1163.   if (XFASTINT (position) >= BEGV
  1164.       && ! NILP (Fget_char_property (position,
  1165.                      Qinvisible,
  1166.                      selected_window)))
  1167.     return 0;
  1168. #endif
  1169.  
  1170.   FRAME_CURSOR_X (frame) += n;
  1171.   XFASTINT (w->last_point_x) = FRAME_CURSOR_X (frame);
  1172.   XFASTINT (w->last_point) = point;
  1173.   cursor_to (FRAME_CURSOR_Y (frame), FRAME_CURSOR_X (frame));
  1174.   fflush (stdout);
  1175.  
  1176.   return 1;
  1177. }
  1178.  
  1179. static void update_line ();
  1180.  
  1181. /* Update frame F based on the data in FRAME_DESIRED_GLYPHS.
  1182.    Value is nonzero if redisplay stopped due to pending input.
  1183.    FORCE nonzero means do not stop for pending input.  */
  1184.  
  1185. int
  1186. update_frame (f, force, inhibit_hairy_id)
  1187.      FRAME_PTR f;
  1188.      int force;
  1189.      int inhibit_hairy_id;
  1190. {
  1191.   register struct frame_glyphs *current_frame;
  1192.   register struct frame_glyphs *desired_frame = 0;
  1193.   register int i;
  1194.   int pause;
  1195.   int preempt_count = baud_rate / 2400 + 1;
  1196.   extern input_pending;
  1197. #ifdef HAVE_X_WINDOWS
  1198.   register int downto, leftmost;
  1199. #endif
  1200.  
  1201.   if (preempt_count <= 0)
  1202.     preempt_count = 1;
  1203.  
  1204. #ifdef AMIGA
  1205.   start_count(0); /* CHFIXME: check, evt. remove? define? */
  1206. #endif
  1207.  
  1208.   if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
  1209.  
  1210. #ifdef FAST_DISPLAY
  1211.   /* Don't compute for i/d line if just want cursor motion. */
  1212.   /* Don't allow preemption, etc either */
  1213.   for (i = 0; i < FRAME_HEIGHT (f); i++)
  1214.     if (desired_frame->enable[i])
  1215.       break;
  1216.  
  1217.   if (i >= FRAME_HEIGHT (f))
  1218.     {
  1219.       update_begin();
  1220.       goto update_done;
  1221.     }
  1222. #endif
  1223.  
  1224.   detect_input_pending ();
  1225.   if (input_pending && !force)
  1226.     {
  1227.       pause = 1;
  1228.       goto do_pause;
  1229.     }
  1230.  
  1231.   update_begin (f);
  1232.  
  1233.   if (!line_ins_del_ok)
  1234.     inhibit_hairy_id = 1;
  1235.  
  1236.   /* These are separate to avoid a possible bug in the AIX C compiler.  */
  1237.   current_frame = FRAME_CURRENT_GLYPHS (f);
  1238.   desired_frame = FRAME_DESIRED_GLYPHS (f);
  1239.  
  1240. #ifndef FAST_DISPLAY
  1241.   /* See if any of the desired lines are enabled; don't compute for
  1242.      i/d line if just want cursor motion. */
  1243.   for (i = 0; i < FRAME_HEIGHT (f); i++)
  1244.     if (desired_frame->enable[i])
  1245.       break;
  1246. #endif
  1247.   
  1248.   /* Try doing i/d line, if not yet inhibited.  */
  1249.   if (!inhibit_hairy_id && i < FRAME_HEIGHT (f))
  1250.     force |= scrolling (f);
  1251.  
  1252.   /* Update the individual lines as needed.  Do bottom line first.  */
  1253.  
  1254.   if (desired_frame->enable[FRAME_HEIGHT (f) - 1])
  1255.     update_line (f, FRAME_HEIGHT (f) - 1);
  1256.  
  1257. #ifdef HAVE_X_WINDOWS
  1258.   if (FRAME_X_P (f))
  1259.     {
  1260.       leftmost = downto = f->display.x->internal_border_width;
  1261.       if (desired_frame->enable[0])
  1262.     {
  1263.       current_frame->top_left_x[FRAME_HEIGHT (f) - 1] = leftmost;
  1264.       current_frame->top_left_y[FRAME_HEIGHT (f) - 1]
  1265.         = PIXEL_HEIGHT (f) - f->display.x->internal_border_width
  1266.           - current_frame->pix_height[FRAME_HEIGHT (f) - 1];
  1267.       current_frame->top_left_x[0] = leftmost;
  1268.       current_frame->top_left_y[0] = downto;
  1269.     }
  1270.     }
  1271. #endif /* HAVE_X_WINDOWS */
  1272.  
  1273.   /* Now update the rest of the lines. */
  1274.   for (i = 0; i < FRAME_HEIGHT (f) - 1 && (force || !input_pending); i++)
  1275.     {
  1276.       if (desired_frame->enable[i])
  1277.     {
  1278.       if (FRAME_TERMCAP_P (f))
  1279.         {
  1280.           /* Flush out every so many lines.
  1281.          Also flush out if likely to have more than 1k buffered
  1282.          otherwise.   I'm told that some telnet connections get
  1283.          really screwed by more than 1k output at once.  */
  1284.           int outq = PENDING_OUTPUT_COUNT (stdout);
  1285.           if (outq > 900
  1286.           || (outq > 20 && ((i - 1) % preempt_count == 0)))
  1287.         {
  1288.           fflush (stdout);
  1289.           if (preempt_count == 1)
  1290.             {
  1291. #ifdef EMACS_OUTQSIZE
  1292.               if (EMACS_OUTQSIZE (0, &outq) < 0)
  1293.             /* Probably not a tty.  Ignore the error and reset
  1294.              * the outq count. */
  1295.             outq = PENDING_OUTPUT_COUNT (stdout);
  1296. #endif
  1297.               outq *= 10;
  1298.               if (baud_rate <= outq && baud_rate > 0)
  1299.             sleep (outq / baud_rate);
  1300.             }
  1301.         }
  1302.           if ((i - 1) % preempt_count == 0)
  1303.         detect_input_pending ();
  1304.         }
  1305.  
  1306.       update_line (f, i);
  1307. #ifdef HAVE_X_WINDOWS
  1308.       if (FRAME_X_P (f))
  1309.         {
  1310.           current_frame->top_left_y[i] = downto;
  1311.           current_frame->top_left_x[i] = leftmost;
  1312.         }
  1313. #endif /* HAVE_X_WINDOWS */
  1314.     }
  1315.  
  1316. #ifdef HAVE_X_WINDOWS
  1317.       if (FRAME_X_P (f))
  1318.     downto += current_frame->pix_height[i];
  1319. #endif
  1320.     }
  1321. #ifdef FAST_DISPLAY
  1322. update_done:
  1323. #endif
  1324.   pause = (i < FRAME_HEIGHT (f) - 1) ? i : 0;
  1325.  
  1326.   /* Now just clean up termcap drivers and set cursor, etc.  */
  1327.   if (!pause)
  1328.     {
  1329.       if (cursor_in_echo_area
  1330.       && FRAME_HAS_MINIBUF_P (f))
  1331.     {
  1332.       int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top);
  1333.       int row, col;
  1334.  
  1335.       if (cursor_in_echo_area < 0)
  1336.         {
  1337.           row = top;
  1338.           col = 0;
  1339.         }
  1340.       else
  1341.         {
  1342.           /* If the minibuffer is several lines high, find the last
  1343.          line that has any text on it.  */
  1344.           row = FRAME_HEIGHT (f);
  1345.           do 
  1346.         {
  1347.           row--;
  1348.           if (current_frame->enable[row])
  1349.             col = current_frame->used[row];
  1350.           else
  1351.             col = 0;
  1352.         }
  1353.           while (row > top && col == 0);
  1354.  
  1355.           if (col >= FRAME_WIDTH (f))
  1356.         {
  1357.           col = 0;
  1358.           if (row < FRAME_HEIGHT (f) - 1)
  1359.             row++;
  1360.         }
  1361.         }
  1362.  
  1363.       cursor_to (row, col);
  1364.     }
  1365.       else
  1366.     cursor_to (FRAME_CURSOR_Y (f), max (min (FRAME_CURSOR_X (f),
  1367.                           FRAME_WIDTH (f) - 1), 0));
  1368.     }
  1369.  
  1370.   update_end (f);
  1371.  
  1372.   if (termscript)
  1373.     fflush (termscript);
  1374.   fflush (stdout);
  1375.  
  1376.   /* Here if output is preempted because input is detected.  */
  1377.  do_pause:
  1378.  
  1379.   if (FRAME_HEIGHT (f) == 0) abort (); /* Some bug zeros some core */
  1380.   display_completed = !pause;
  1381.   
  1382.   if(FRAME_DESIRED_GLYPHS (f))
  1383.       bzero (FRAME_DESIRED_GLYPHS (f)->enable, FRAME_HEIGHT (f));
  1384. #ifdef AMIGA
  1385.   stop_count(0);
  1386. #endif
  1387.   return pause;
  1388. }
  1389.  
  1390. /* Called when about to quit, to check for doing so
  1391.    at an improper time.  */
  1392.  
  1393. void
  1394. quit_error_check ()
  1395. {
  1396.   if (FRAME_DESIRED_GLYPHS (selected_frame) == 0)
  1397.     return;
  1398.   if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[0])
  1399.     abort ();
  1400.   if (FRAME_DESIRED_GLYPHS (selected_frame)->enable[FRAME_HEIGHT (selected_frame) - 1])
  1401.     abort ();
  1402. }
  1403.  
  1404. /* Decide what insert/delete line to do, and do it */
  1405.  
  1406. extern void scrolling_1 ();
  1407.  
  1408. scrolling (frame)
  1409.      FRAME_PTR frame;
  1410. {
  1411.   int unchanged_at_top, unchanged_at_bottom;
  1412.   int window_size;
  1413.   int changed_lines;
  1414.   int *old_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
  1415.   int *new_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
  1416.   int *draw_cost = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int));
  1417.   register int i;
  1418.   int free_at_end_vpos = FRAME_HEIGHT (frame);
  1419.   register struct frame_glyphs *current_frame = FRAME_CURRENT_GLYPHS (frame);
  1420.   register struct frame_glyphs *desired_frame = FRAME_DESIRED_GLYPHS (frame);
  1421.  
  1422.   /* Compute hash codes of all the lines.
  1423.      Also calculate number of changed lines,
  1424.      number of unchanged lines at the beginning,
  1425.      and number of unchanged lines at the end.  */
  1426.  
  1427.   changed_lines = 0;
  1428.   unchanged_at_top = 0;
  1429.   unchanged_at_bottom = FRAME_HEIGHT (frame);
  1430.   for (i = 0; i < FRAME_HEIGHT (frame); i++)
  1431.     {
  1432.       /* Give up on this scrolling if some old lines are not enabled.  */
  1433.       if (!current_frame->enable[i])
  1434.     return 0;
  1435.       old_hash[i] = line_hash_code (current_frame, i);
  1436.       if (! desired_frame->enable[i])
  1437.     new_hash[i] = old_hash[i];
  1438.       else
  1439.     new_hash[i] = line_hash_code (desired_frame, i);
  1440.  
  1441.       if (old_hash[i] != new_hash[i])
  1442.     {
  1443.       changed_lines++;
  1444.       unchanged_at_bottom = FRAME_HEIGHT (frame) - i - 1;
  1445.     }
  1446.       else if (i == unchanged_at_top)
  1447.     unchanged_at_top++;
  1448.       draw_cost[i] = line_draw_cost (desired_frame, i);
  1449.     }
  1450.  
  1451.   /* If changed lines are few, don't allow preemption, don't scroll.  */
  1452.   if (changed_lines < baud_rate / 2400
  1453.       || unchanged_at_bottom == FRAME_HEIGHT (frame))
  1454.     return 1;
  1455.  
  1456.   window_size = (FRAME_HEIGHT (frame) - unchanged_at_top
  1457.          - unchanged_at_bottom);
  1458.  
  1459.   if (scroll_region_ok)
  1460.     free_at_end_vpos -= unchanged_at_bottom;
  1461.   else if (memory_below_frame)
  1462.     free_at_end_vpos = -1;
  1463.  
  1464.   /* If large window, fast terminal and few lines in common between
  1465.      current frame and desired frame, don't bother with i/d calc. */
  1466.   if (window_size >= 18 && baud_rate > 2400
  1467.       && (window_size >=
  1468.       10 * scrolling_max_lines_saved (unchanged_at_top,
  1469.                       FRAME_HEIGHT (frame) - unchanged_at_bottom,
  1470.                       old_hash, new_hash, draw_cost)))
  1471.     return 0;
  1472.  
  1473.   scrolling_1 (frame, window_size, unchanged_at_top, unchanged_at_bottom,
  1474.            draw_cost + unchanged_at_top - 1,
  1475.            old_hash + unchanged_at_top - 1,
  1476.            new_hash + unchanged_at_top - 1,
  1477.            free_at_end_vpos - unchanged_at_top);
  1478.  
  1479.   return 0;
  1480. }
  1481.  
  1482. /* Return the offset in its buffer of the character at location col, line
  1483.    in the given window.  */
  1484. int
  1485. buffer_posn_from_coords (window, col, line)
  1486.      struct window *window;
  1487.      int col, line;
  1488. {
  1489.   int hscroll = XINT (window->hscroll);
  1490.   int window_left = XFASTINT (window->left);
  1491.  
  1492.   /* The actual width of the window is window->width less one for the
  1493.      DISP_CONTINUE_GLYPH, and less one if it's not the rightmost
  1494.      window.  */
  1495.   int window_width = window_internal_width (window) - 1;
  1496.  
  1497.   int startp = marker_position (window->start);
  1498.  
  1499.   /* Since compute_motion will only operate on the current buffer,
  1500.      we need to save the old one and restore it when we're done.  */
  1501.   struct buffer *old_current_buffer = current_buffer;
  1502.   struct position *posn;
  1503.  
  1504.   current_buffer = XBUFFER (window->buffer);
  1505.  
  1506.   /* It would be nice if we could use FRAME_CURRENT_GLYPHS (XFRAME
  1507.      (window->frame))->bufp to avoid scanning from the very top of
  1508.      the window, but it isn't maintained correctly, and I'm not even
  1509.      sure I will keep it.  */
  1510.   posn = compute_motion (startp, 0,
  1511.              (window == XWINDOW (minibuf_window) && startp == 1
  1512.               ? minibuf_prompt_width : 0)
  1513.              + (hscroll ? 1 - hscroll : 0),
  1514.              ZV, line, col,
  1515.              window_width, hscroll, 0, window);
  1516.  
  1517.   current_buffer = old_current_buffer;
  1518.  
  1519.   /* compute_motion considers frame points past the end of a line
  1520.      to be *after* the newline, i.e. at the start of the next line.
  1521.      This is reasonable, but not really what we want.  So if the
  1522.      result is on a line below LINE, back it up one character.  */
  1523.   if (posn->vpos > line)
  1524.     return posn->bufpos - 1;
  1525.   else
  1526.     return posn->bufpos;
  1527. }
  1528.  
  1529. static int
  1530. count_blanks (r)
  1531.      register GLYPH *r;
  1532. {
  1533.   register GLYPH *p = r;
  1534.   while (*p++ == SPACEGLYPH);
  1535.   return p - r - 1;
  1536. }
  1537.  
  1538. static int
  1539. count_match (str1, str2)
  1540.      GLYPH *str1, *str2;
  1541. {
  1542.   register GLYPH *p1 = str1;
  1543.   register GLYPH *p2 = str2;
  1544.   while (*p1++ == *p2++);
  1545.   return p1 - str1 - 1;
  1546. }
  1547.  
  1548. /* Char insertion/deletion cost vector, from term.c */
  1549. extern int *char_ins_del_vector;
  1550.  
  1551. #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH((f))])
  1552.  
  1553. static void
  1554. update_line (frame, vpos)
  1555.      register FRAME_PTR frame;
  1556.      int vpos;
  1557. {
  1558.   register GLYPH *obody, *nbody, *op1, *op2, *np1, *temp;
  1559.   int *temp1;
  1560.   int tem;
  1561.   int osp, nsp, begmatch, endmatch, olen, nlen;
  1562.   int save;
  1563.   register struct frame_glyphs *current_frame
  1564.     = FRAME_CURRENT_GLYPHS (frame);
  1565.   register struct frame_glyphs *desired_frame
  1566.     = FRAME_DESIRED_GLYPHS (frame);
  1567.  
  1568.   if (desired_frame->highlight[vpos]
  1569.       != (current_frame->enable[vpos] && current_frame->highlight[vpos]))
  1570.     {
  1571.       change_line_highlight (desired_frame->highlight[vpos], vpos,
  1572.                  (current_frame->enable[vpos] ?
  1573.                   current_frame->used[vpos] : 0));
  1574.       current_frame->enable[vpos] = 0;
  1575.     }
  1576.   else
  1577.     reassert_line_highlight (desired_frame->highlight[vpos], vpos);
  1578.  
  1579. #ifdef FAST_DISPLAY
  1580.   if (current_frame->enable[vpos])
  1581.   {
  1582.       obody = current_frame->contents[vpos];
  1583.       olen = current_frame->used[vpos];
  1584.   }
  1585.   else olen = 0;
  1586.  
  1587.   nbody = desired_frame->contents[vpos];
  1588.   nlen = desired_frame->used[vpos];
  1589.  
  1590.   /* Pretend trailing spaces are not there at all,
  1591.      unless for one reason or another we must write all spaces.  */
  1592.   /* We know that the previous character byte contains 0.  */
  1593.   if (! new_screen->highlight[vpos])
  1594.   {
  1595.       if (!must_write_spaces)
  1596.       while (nbody[nlen - 1] == ' ')
  1597.           nlen--;
  1598.   }
  1599.   else
  1600.   {
  1601.       /* For an inverse-video line, give it extra trailing spaces
  1602.      all the way to the screen edge
  1603.      so that the reverse video extends all the way across.  */
  1604.       while (nlen < FRAME_WIDTH(current_frame) - 1)
  1605.       nbody[nlen++] = ' ';
  1606.   }
  1607.   
  1608.   while (olen > 0 && nlen > 0 && *obody == *nbody)
  1609.   {
  1610.       olen--; nlen--; obody++; nbody++;
  1611.   }
  1612.   if (olen > 0 || nlen > 0)
  1613.       move_cursor (vpos, nbody - new_screen->contents[vpos]);
  1614.   if (nlen > 0) output_chars (nbody, nlen);
  1615.   
  1616.   if (olen > nlen && new_screen->used[vpos] != screen_width)
  1617.       clear_end_of_line(current_screen->used[vpos]);
  1618.   /* Exchange contents between current_screen and new_screen.  */
  1619.   temp = new_screen->contents[vpos];
  1620.   new_screen->contents[vpos] = current_screen->contents[vpos];
  1621.   current_screen->contents[vpos] = temp;
  1622.  
  1623.   /* One way or another, this will enable the line being updated.  */
  1624.   current_screen->enable[vpos] = 1;
  1625.   current_screen->used[vpos] = new_screen->used[vpos];
  1626.   current_screen->highlight[vpos] = new_screen->highlight[vpos];
  1627.  
  1628. #else /* not FAST_DISPLAY */
  1629.  
  1630.   if (! current_frame->enable[vpos])
  1631.     {
  1632.       olen = 0;
  1633.     }
  1634.   else
  1635.     {
  1636.       obody = current_frame->glyphs[vpos];
  1637.       olen = current_frame->used[vpos];
  1638.       if (! current_frame->highlight[vpos])
  1639.     {
  1640.       if (!must_write_spaces)
  1641.         while (obody[olen - 1] == SPACEGLYPH && olen > 0)
  1642.           olen--;
  1643.     }
  1644.       else
  1645.     {
  1646.       /* For an inverse-video line, remember we gave it
  1647.          spaces all the way to the frame edge
  1648.          so that the reverse video extends all the way across.  */
  1649.  
  1650.       while (olen < FRAME_WIDTH (frame) - 1)
  1651.         obody[olen++] = SPACEGLYPH;
  1652.     }
  1653.     }
  1654.  
  1655.   /* One way or another, this will enable the line being updated.  */
  1656.   current_frame->enable[vpos] = 1;
  1657.   current_frame->used[vpos] = desired_frame->used[vpos];
  1658.   current_frame->highlight[vpos] = desired_frame->highlight[vpos];
  1659.   current_frame->bufp[vpos] = desired_frame->bufp[vpos];
  1660.  
  1661. #ifdef HAVE_X_WINDOWS
  1662.   if (FRAME_X_P (frame))
  1663.     {
  1664.       current_frame->pix_width[vpos]
  1665.     = current_frame->used[vpos]
  1666.       * FONT_WIDTH (frame->display.x->font);
  1667.       current_frame->pix_height[vpos]
  1668.     = frame->display.x->line_height;
  1669.     }
  1670. #endif /* HAVE_X_WINDOWS */
  1671.  
  1672.   if (!desired_frame->enable[vpos])
  1673.     {
  1674.       nlen = 0;
  1675.       goto just_erase;
  1676.     }
  1677.  
  1678.   nbody = desired_frame->glyphs[vpos];
  1679.   nlen = desired_frame->used[vpos];
  1680.  
  1681.   /* Pretend trailing spaces are not there at all,
  1682.      unless for one reason or another we must write all spaces.  */
  1683.   if (! desired_frame->highlight[vpos])
  1684.     {
  1685.       if (!must_write_spaces)
  1686.     /* We know that the previous character byte contains 0.  */
  1687.     while (nbody[nlen - 1] == SPACEGLYPH)
  1688.       nlen--;
  1689.     }
  1690.   else
  1691.     {
  1692.       /* For an inverse-video line, give it extra trailing spaces
  1693.      all the way to the frame edge
  1694.      so that the reverse video extends all the way across.  */
  1695.  
  1696.       while (nlen < FRAME_WIDTH (frame) - 1)
  1697.     nbody[nlen++] = SPACEGLYPH;
  1698.     }
  1699.  
  1700.   /* If there's no i/d char, quickly do the best we can without it.  */
  1701.   if (!char_ins_del_ok)
  1702.     {
  1703.       int i,j;
  1704.  
  1705. #if 0
  1706.       if (FRAME_X_P (frame))
  1707.     {
  1708.       /* Under X, erase everything we are going to rewrite,
  1709.          and rewrite everything from the first char that's changed.
  1710.          This is part of supporting fonts like Courier
  1711.          whose chars can overlap outside the char width.  */
  1712.       for (i = 0; i < nlen; i++)
  1713.         if (i >= olen || nbody[i] != obody[i])
  1714.           break;
  1715.  
  1716.       cursor_to (vpos, i);
  1717.       if (i != olen)
  1718.         clear_end_of_line (olen);
  1719.       write_glyphs (nbody + i, nlen - i);
  1720.     }
  1721.       else
  1722.     {}
  1723. #endif /* 0 */
  1724.       for (i = 0; i < nlen; i++)
  1725.     {
  1726.       if (i >= olen || nbody[i] != obody[i])    /* A non-matching char. */
  1727.         {
  1728.           cursor_to (vpos, i);
  1729.           for (j = 1; (i + j < nlen &&
  1730.                (i + j >= olen || nbody[i+j] != obody[i+j]));
  1731.            j++);
  1732.  
  1733.           /* Output this run of non-matching chars.  */ 
  1734.           write_glyphs (nbody + i, j);
  1735.           i += j - 1;
  1736.  
  1737.           /* Now find the next non-match.  */
  1738.         }
  1739.     }
  1740.  
  1741.       /* Clear the rest of the line, or the non-clear part of it.  */
  1742.       if (olen > nlen)
  1743.     {
  1744.       cursor_to (vpos, nlen);
  1745.       clear_end_of_line (olen);
  1746.     }
  1747.  
  1748.       /* Exchange contents between current_frame and new_frame.  */
  1749.       temp = desired_frame->glyphs[vpos];
  1750.       desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
  1751.       current_frame->glyphs[vpos] = temp;
  1752.  
  1753.       /* Exchange charstarts between current_frame and new_frame.  */
  1754.       temp1 = desired_frame->charstarts[vpos];
  1755.       desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
  1756.       current_frame->charstarts[vpos] = temp1;
  1757.  
  1758.       return;
  1759.     }
  1760.  
  1761.   if (!olen)
  1762.     {
  1763.       nsp = (must_write_spaces || desired_frame->highlight[vpos])
  1764.           ? 0 : count_blanks (nbody);
  1765.       if (nlen > nsp)
  1766.     {
  1767.       cursor_to (vpos, nsp);
  1768.       write_glyphs (nbody + nsp, nlen - nsp);
  1769.     }
  1770.  
  1771.       /* Exchange contents between current_frame and new_frame.  */
  1772.       temp = desired_frame->glyphs[vpos];
  1773.       desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
  1774.       current_frame->glyphs[vpos] = temp;
  1775.  
  1776.       /* Exchange charstarts between current_frame and new_frame.  */
  1777.       temp1 = desired_frame->charstarts[vpos];
  1778.       desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
  1779.       current_frame->charstarts[vpos] = temp1;
  1780.  
  1781.       return;
  1782.     }
  1783.  
  1784.   obody[olen] = 1;
  1785.   save = nbody[nlen];
  1786.   nbody[nlen] = 0;
  1787.  
  1788.   /* Compute number of leading blanks in old and new contents.  */
  1789.   osp = count_blanks (obody);
  1790.   if (!desired_frame->highlight[vpos])
  1791.     nsp = count_blanks (nbody);
  1792.   else
  1793.     nsp = 0;
  1794.  
  1795.   /* Compute number of matching chars starting with first nonblank.  */
  1796.   begmatch = count_match (obody + osp, nbody + nsp);
  1797.  
  1798.   /* Spaces in new match implicit space past the end of old.  */
  1799.   /* A bug causing this to be a no-op was fixed in 18.29.  */
  1800.   if (!must_write_spaces && osp + begmatch == olen)
  1801.     {
  1802.       np1 = nbody + nsp;
  1803.       while (np1[begmatch] == SPACEGLYPH)
  1804.     begmatch++;
  1805.     }
  1806.  
  1807.   /* Avoid doing insert/delete char
  1808.      just cause number of leading spaces differs
  1809.      when the following text does not match. */
  1810.   if (begmatch == 0 && osp != nsp)
  1811.     osp = nsp = min (osp, nsp);
  1812.  
  1813.   /* Find matching characters at end of line */
  1814.   op1 = obody + olen;
  1815.   np1 = nbody + nlen;
  1816.   op2 = op1 + begmatch - min (olen - osp, nlen - nsp);
  1817.   while (op1 > op2 && op1[-1] == np1[-1])
  1818.     {
  1819.       op1--;
  1820.       np1--;
  1821.     }
  1822.   endmatch = obody + olen - op1;
  1823.  
  1824.   /* Put correct value back in nbody[nlen].
  1825.      This is important because direct_output_for_insert
  1826.      can write into the line at a later point.
  1827.      If this screws up the zero at the end of the line, re-establish it.  */
  1828.   nbody[nlen] = save;
  1829.   obody[olen] = 0;
  1830.  
  1831.   /* tem gets the distance to insert or delete.
  1832.      endmatch is how many characters we save by doing so.
  1833.      Is it worth it?  */
  1834.  
  1835.   tem = (nlen - nsp) - (olen - osp);
  1836.   if (endmatch && tem
  1837.       && (!char_ins_del_ok || endmatch <= char_ins_del_cost (frame)[tem]))
  1838.     endmatch = 0;
  1839.  
  1840.   /* nsp - osp is the distance to insert or delete.
  1841.      If that is nonzero, begmatch is known to be nonzero also.
  1842.      begmatch + endmatch is how much we save by doing the ins/del.
  1843.      Is it worth it?  */
  1844.  
  1845.   if (nsp != osp
  1846.       && (!char_ins_del_ok
  1847.       || begmatch + endmatch <= char_ins_del_cost (frame)[nsp - osp]))
  1848.     {
  1849.       begmatch = 0;
  1850.       endmatch = 0;
  1851.       osp = nsp = min (osp, nsp);
  1852.     }
  1853.  
  1854.   /* Now go through the line, inserting, writing and
  1855.      deleting as appropriate.  */
  1856.  
  1857.   if (osp > nsp)
  1858.     {
  1859.       cursor_to (vpos, nsp);
  1860.       delete_glyphs (osp - nsp);
  1861.     }
  1862.   else if (nsp > osp)
  1863.     {
  1864.       /* If going to delete chars later in line
  1865.      and insert earlier in the line,
  1866.      must delete first to avoid losing data in the insert */
  1867.       if (endmatch && nlen < olen + nsp - osp)
  1868.     {
  1869.       cursor_to (vpos, nlen - endmatch + osp - nsp);
  1870.       delete_glyphs (olen + nsp - osp - nlen);
  1871.       olen = nlen - (nsp - osp);
  1872.     }
  1873.       cursor_to (vpos, osp);
  1874.       insert_glyphs ((GLYPH *) 0, nsp - osp);
  1875.     }
  1876.   olen += nsp - osp;
  1877.  
  1878.   tem = nsp + begmatch + endmatch;
  1879.   if (nlen != tem || olen != tem)
  1880.     {
  1881.       cursor_to (vpos, nsp + begmatch);
  1882.       if (!endmatch || nlen == olen)
  1883.     {
  1884.       /* If new text being written reaches right margin,
  1885.          there is no need to do clear-to-eol at the end.
  1886.          (and it would not be safe, since cursor is not
  1887.          going to be "at the margin" after the text is done) */
  1888.       if (nlen == FRAME_WIDTH (frame))
  1889.         olen = 0;
  1890.       write_glyphs (nbody + nsp + begmatch, nlen - tem);
  1891.  
  1892. #ifdef obsolete
  1893.  
  1894. /* the following code loses disastrously if tem == nlen.
  1895.    Rather than trying to fix that case, I am trying the simpler
  1896.    solution found above.  */
  1897.  
  1898.       /* If the text reaches to the right margin,
  1899.          it will lose one way or another (depending on AutoWrap)
  1900.          to clear to end of line after outputting all the text.
  1901.          So pause with one character to go and clear the line then.  */
  1902.       if (nlen == FRAME_WIDTH (frame) && fast_clear_end_of_line && olen > nlen)
  1903.         {
  1904.           /* endmatch must be zero, and tem must equal nsp + begmatch */
  1905.           write_glyphs (nbody + tem, nlen - tem - 1);
  1906.           clear_end_of_line (olen);
  1907.           olen = 0;        /* Don't let it be cleared again later */
  1908.           write_glyphs (nbody + nlen - 1, 1);
  1909.         }
  1910.       else
  1911.         write_glyphs (nbody + nsp + begmatch, nlen - tem);
  1912. #endif    /* OBSOLETE */
  1913.  
  1914.     }
  1915.       else if (nlen > olen)
  1916.     {
  1917.       write_glyphs (nbody + nsp + begmatch, olen - tem);
  1918.       insert_glyphs (nbody + nsp + begmatch + olen - tem, nlen - olen);
  1919.       olen = nlen;
  1920.     }
  1921.       else if (olen > nlen)
  1922.     {
  1923.       write_glyphs (nbody + nsp + begmatch, nlen - tem);
  1924.       delete_glyphs (olen - nlen);
  1925.       olen = nlen;
  1926.     }
  1927.     }
  1928.  
  1929.  just_erase:
  1930.   /* If any unerased characters remain after the new line, erase them.  */
  1931.   if (olen > nlen)
  1932.     {
  1933.       cursor_to (vpos, nlen);
  1934.       clear_end_of_line (olen);
  1935.     }
  1936.  
  1937.   /* Exchange contents between current_frame and new_frame.  */
  1938.   temp = desired_frame->glyphs[vpos];
  1939.   desired_frame->glyphs[vpos] = current_frame->glyphs[vpos];
  1940.   current_frame->glyphs[vpos] = temp;
  1941.  
  1942.   /* Exchange charstarts between current_frame and new_frame.  */
  1943.   temp1 = desired_frame->charstarts[vpos];
  1944.   desired_frame->charstarts[vpos] = current_frame->charstarts[vpos];
  1945.   current_frame->charstarts[vpos] = temp1;
  1946. #endif /* not FAST_DISPLAY */
  1947. }
  1948.  
  1949. /* A vector of size >= NFRAMES + 3 * NBUFFERS + 1, containing the session's
  1950.    frames, buffers, buffer-read-only flags, and buffer-modified-flags,
  1951.    and a trailing sentinel (so we don't need to add length checks).  */
  1952. static Lisp_Object frame_and_buffer_state;
  1953.  
  1954. DEFUN ("frame-or-buffer-changed-p", Fframe_or_buffer_changed_p,
  1955.   Sframe_or_buffer_changed_p, 0, 0, 0,
  1956.   "Return non-nil if the frame and buffer state appears to have changed.\n\
  1957. The state variable is an internal vector containing all frames and buffers,\n\
  1958. along with the buffers' read-only and modified flags, which allows a fast\n\
  1959. check to see whether the menu bars might need to be recomputed.\n\
  1960. If this function returns non-nil, it updates the internal vector to reflect\n\
  1961. the current state.\n")
  1962.   ()
  1963. {
  1964.   Lisp_Object tail, frame, buf;
  1965.   Lisp_Object *vecp;
  1966.   int n;
  1967.   vecp = XVECTOR (frame_and_buffer_state)->contents;
  1968.   FOR_EACH_FRAME (tail, frame)
  1969.     if (!EQ (*vecp++, frame))
  1970.       goto changed;
  1971.   for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
  1972.     {
  1973.       buf = XCONS (XCONS (tail)->car)->cdr;
  1974.       if (!EQ (*vecp++, buf))
  1975.     goto changed;
  1976.       if (!EQ (*vecp++, XBUFFER (buf)->read_only))
  1977.     goto changed;
  1978.       if (!EQ (*vecp++, Fbuffer_modified_p (buf)))
  1979.     goto changed;
  1980.     }
  1981.   return Qnil;
  1982.  changed:
  1983.   n = 1;
  1984.   FOR_EACH_FRAME (tail, frame)
  1985.     n++;
  1986.   for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
  1987.     n += 3;
  1988.   /* Reallocate the vector if it's grown, or if it's shrunk a lot.  */
  1989.   if (n > XVECTOR (frame_and_buffer_state)->size
  1990.       || n < XVECTOR (frame_and_buffer_state)->size / 2)
  1991.     frame_and_buffer_state = Fmake_vector (make_number (n), Qlambda);
  1992.   vecp = XVECTOR (frame_and_buffer_state)->contents;
  1993.   FOR_EACH_FRAME (tail, frame)
  1994.     *vecp++ = frame;
  1995.   for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
  1996.     {
  1997.       buf = XCONS (XCONS (tail)->car)->cdr;
  1998.       *vecp++ = buf;
  1999.       *vecp++ = XBUFFER (buf)->read_only;
  2000.       *vecp++ = Fbuffer_modified_p (buf);
  2001.     }
  2002.   /* If we left any slack in the vector, fill it up now.  */
  2003.   for (; n < XVECTOR (frame_and_buffer_state)->size; ++n)
  2004.     *vecp++ = Qlambda;
  2005.   return Qt;
  2006. }
  2007.  
  2008. DEFUN ("open-termscript", Fopen_termscript, Sopen_termscript,
  2009.   1, 1, "FOpen termscript file: ",
  2010.   "Start writing all terminal output to FILE as well as the terminal.\n\
  2011. FILE = nil means just close any termscript file currently open.")
  2012.   (file)
  2013.      Lisp_Object file;
  2014. {
  2015.   if (termscript != 0) fclose (termscript);
  2016.   termscript = 0;
  2017.  
  2018.   if (! NILP (file))
  2019.     {
  2020.       file = Fexpand_file_name (file, Qnil);
  2021.       termscript = fopen (XSTRING (file)->data, "w");
  2022.       if (termscript == 0)
  2023.     report_file_error ("Opening termscript", Fcons (file, Qnil));
  2024.     }
  2025.   return Qnil;
  2026. }
  2027.  
  2028.  
  2029. #ifdef SIGWINCH
  2030. SIGTYPE
  2031. window_change_signal ()
  2032. {
  2033.   int width, height;
  2034.   extern int errno;
  2035.   int old_errno = errno;
  2036.  
  2037.   get_frame_size (&width, &height);
  2038.  
  2039.   /* The frame size change obviously applies to a termcap-controlled
  2040.      frame.  Find such a frame in the list, and assume it's the only
  2041.      one (since the redisplay code always writes to stdout, not a
  2042.      FILE * specified in the frame structure).  Record the new size,
  2043.      but don't reallocate the data structures now.  Let that be done
  2044.      later outside of the signal handler.  */
  2045.  
  2046.   {
  2047.     Lisp_Object tail, frame;
  2048.  
  2049.     FOR_EACH_FRAME (tail, frame)
  2050.       {
  2051.     if (FRAME_TERMCAP_P (XFRAME (frame)))
  2052.       {
  2053.         change_frame_size (XFRAME (frame), height, width, 0, 1);
  2054.         break;
  2055.       }
  2056.       }
  2057.   }
  2058.  
  2059.   signal (SIGWINCH, window_change_signal);
  2060.   errno = old_errno;
  2061. }
  2062. #endif /* SIGWINCH */
  2063.  
  2064.  
  2065. /* Do any change in frame size that was requested by a signal.  */
  2066.  
  2067. do_pending_window_change ()
  2068. {
  2069.   /* If window_change_signal should have run before, run it now.  */
  2070.   while (delayed_size_change)
  2071.     {
  2072.       Lisp_Object tail, frame;
  2073.  
  2074.       delayed_size_change = 0;
  2075.  
  2076.       FOR_EACH_FRAME (tail, frame)
  2077.     {
  2078.       FRAME_PTR f = XFRAME (frame);
  2079.  
  2080.       int height = FRAME_NEW_HEIGHT (f);
  2081.       int width = FRAME_NEW_WIDTH (f);
  2082.  
  2083.       if (height != 0 || width != 0)
  2084.         change_frame_size (f, height, width, 0, 0);
  2085.     }
  2086.     }
  2087. }
  2088.  
  2089.  
  2090. /* Change the frame height and/or width.  Values may be given as zero to
  2091.    indicate no change is to take place. 
  2092.  
  2093.    If DELAY is non-zero, then assume we're being called from a signal
  2094.    handler, and queue the change for later - perhaps the next
  2095.    redisplay.  Since this tries to resize windows, we can't call it
  2096.    from a signal handler.  */
  2097.  
  2098. change_frame_size (frame, newheight, newwidth, pretend, delay)
  2099.      register FRAME_PTR frame;
  2100.      int newheight, newwidth, pretend;
  2101. {
  2102.   /* If we can't deal with the change now, queue it for later.  */
  2103.   if (delay)
  2104.     {
  2105.       FRAME_NEW_HEIGHT (frame) = newheight;
  2106.       FRAME_NEW_WIDTH (frame) = newwidth;
  2107.       delayed_size_change = 1;
  2108.       return;
  2109.     }
  2110.  
  2111.   /* This size-change overrides any pending one for this frame.  */
  2112.   FRAME_NEW_HEIGHT (frame) = 0;
  2113.   FRAME_NEW_WIDTH  (frame) = 0;
  2114.  
  2115.   /* If an argument is zero, set it to the current value.  */
  2116.   newheight || (newheight = FRAME_HEIGHT (frame));
  2117.   newwidth  || (newwidth  = FRAME_WIDTH  (frame));
  2118.  
  2119.   /* Round up to the smallest acceptable size.  */
  2120.   check_frame_size (frame, &newheight, &newwidth);
  2121.  
  2122.   /* If we're not changing the frame size, quit now.  */
  2123.   if (newheight == FRAME_HEIGHT (frame)
  2124.       && newwidth == FRAME_WIDTH (frame))
  2125.     return;
  2126.  
  2127.   if (newheight != FRAME_HEIGHT (frame))
  2128.     {
  2129.       if (FRAME_HAS_MINIBUF_P (frame)
  2130.       && ! FRAME_MINIBUF_ONLY_P (frame))
  2131.     {
  2132.       /* Frame has both root and minibuffer.  */
  2133.       set_window_height (FRAME_ROOT_WINDOW (frame),
  2134.                  newheight - 1 - FRAME_MENU_BAR_LINES (frame), 0);
  2135.       XFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (frame))->top)
  2136.         = newheight - 1;
  2137.       set_window_height (FRAME_MINIBUF_WINDOW (frame), 1, 0);
  2138.     }
  2139.       else
  2140.     /* Frame has just one top-level window.  */
  2141.     set_window_height (FRAME_ROOT_WINDOW (frame),
  2142.                newheight - FRAME_MENU_BAR_LINES (frame), 0);
  2143.  
  2144.       if (FRAME_TERMCAP_P (frame) && !pretend)
  2145.     FrameRows = newheight;
  2146.  
  2147. #if 0
  2148.       if (frame->output_method == output_termcap)
  2149.     {
  2150.       frame_height = newheight;
  2151.       if (!pretend)
  2152.         FrameRows = newheight;
  2153.     }
  2154. #endif
  2155.     }
  2156.  
  2157.   if (newwidth != FRAME_WIDTH (frame))
  2158.     {
  2159.       set_window_width (FRAME_ROOT_WINDOW (frame), newwidth, 0);
  2160.       if (FRAME_HAS_MINIBUF_P (frame))
  2161.     set_window_width (FRAME_MINIBUF_WINDOW (frame), newwidth, 0);
  2162.  
  2163.       if (FRAME_TERMCAP_P (frame) && !pretend)
  2164.     FrameCols = newwidth;
  2165. #if 0
  2166.       if (frame->output_method == output_termcap)
  2167.     {
  2168.       frame_width = newwidth;
  2169.       if (!pretend)
  2170.         FrameCols = newwidth;
  2171.     }
  2172. #endif
  2173.     }
  2174.  
  2175.   FRAME_HEIGHT (frame) = newheight;
  2176.   FRAME_WIDTH (frame)  = newwidth;
  2177.  
  2178.   if (FRAME_CURSOR_X (frame) >= FRAME_WIDTH (frame))
  2179.     FRAME_CURSOR_X (frame) = FRAME_WIDTH (frame) - 1;
  2180.   if (FRAME_CURSOR_Y (frame) >= FRAME_HEIGHT (frame))
  2181.     FRAME_CURSOR_Y (frame) = FRAME_HEIGHT (frame) - 1;
  2182.  
  2183.   remake_frame_glyphs (frame);
  2184.   calculate_costs (frame);
  2185. }
  2186.  
  2187. DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,
  2188.   Ssend_string_to_terminal, 1, 1, 0,
  2189.   "Send STRING to the terminal without alteration.\n\
  2190. Control characters in STRING will have terminal-dependent effects.")
  2191.   (str)
  2192.      Lisp_Object str;
  2193. {
  2194.   CHECK_STRING (str, 0);
  2195.   fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, stdout);
  2196.   fflush (stdout);
  2197.   if (termscript)
  2198.     {
  2199.       fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, termscript);
  2200.       fflush (termscript);
  2201.     }
  2202.   return Qnil;
  2203. }
  2204.  
  2205. DEFUN ("ding", Fding, Sding, 0, 1, 0,
  2206.   "Beep, or flash the screen.\n\
  2207. Also, unless an argument is given,\n\
  2208. terminate any keyboard macro currently executing.")
  2209.   (arg)
  2210.   Lisp_Object arg;
  2211. {
  2212.   if (!NILP (arg))
  2213.     {
  2214.       if (noninteractive)
  2215.     putchar (07);
  2216.       else
  2217.     ring_bell ();
  2218.       fflush (stdout);
  2219.     }
  2220.   else
  2221.     bitch_at_user ();
  2222.  
  2223.   return Qnil;
  2224. }
  2225.  
  2226. bitch_at_user ()
  2227. {
  2228.   if (noninteractive)
  2229.     putchar (07);
  2230.   else if (!INTERACTIVE)  /* Stop executing a keyboard macro. */
  2231.     error ("Keyboard macro terminated by a command ringing the bell");
  2232.   else
  2233.     ring_bell ();
  2234.   fflush (stdout);
  2235. }
  2236.  
  2237. DEFUN ("sleep-for", Fsleep_for, Ssleep_for, 1, 2, 0,
  2238.   "Pause, without updating display, for SECONDS seconds.\n\
  2239. SECONDS may be a floating-point value, meaning that you can wait for a\n\
  2240. fraction of a second.  Optional second arg MILLISECONDS specifies an\n\
  2241. additional wait period, in milliseconds; this may be useful if your\n\
  2242. Emacs was built without floating point support.\n\
  2243. \(Not all operating systems support waiting for a fraction of a second.)")
  2244.   (seconds, milliseconds)
  2245.      Lisp_Object seconds, milliseconds;
  2246. {
  2247.   int sec, usec;
  2248.  
  2249.   if (NILP (milliseconds))
  2250.     XSET (milliseconds, Lisp_Int, 0);
  2251.   else
  2252.     CHECK_NUMBER (milliseconds, 1);
  2253.   usec = XINT (milliseconds) * 1000;
  2254.  
  2255. #ifdef LISP_FLOAT_TYPE
  2256.   {
  2257.     double duration = extract_float (seconds);
  2258.     sec = (int) duration;
  2259.     usec += (duration - sec) * 1000000;
  2260.   }
  2261. #else
  2262.   CHECK_NUMBER (seconds, 0);
  2263.   sec = XINT (seconds);
  2264. #endif
  2265.  
  2266. #ifndef EMACS_HAS_USECS
  2267.   if (sec == 0 && usec != 0)
  2268.     error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE);
  2269. #endif
  2270.  
  2271.   /* Assure that 0 <= usec < 1000000.  */
  2272.   if (usec < 0)
  2273.     {
  2274.       /* We can't rely on the rounding being correct if user is negative.  */
  2275.       if (-1000000 < usec)
  2276.     sec--, usec += 1000000;
  2277.       else
  2278.     sec -= -usec / 1000000, usec = 1000000 - (-usec % 1000000);
  2279.     }
  2280.   else
  2281.     sec += usec / 1000000, usec %= 1000000;
  2282.  
  2283.   if (sec <= 0)
  2284.     return Qnil;
  2285.  
  2286.   {
  2287.     Lisp_Object zero;
  2288.  
  2289.     XFASTINT (zero) = 0;
  2290.     wait_reading_process_input (sec, usec, zero, 0);
  2291.   }
  2292.  
  2293.   /* We should always have wait_reading_process_input; we have a dummy
  2294.      implementation for systems which don't support subprocesses.  */
  2295. #if 0
  2296.   /* No wait_reading_process_input */
  2297.   immediate_quit = 1;
  2298.   QUIT;
  2299.  
  2300. #ifdef VMS
  2301.   sys_sleep (sec);
  2302. #else /* not VMS */
  2303. /* The reason this is done this way 
  2304.     (rather than defined (H_S) && defined (H_T))
  2305.    is because the VMS preprocessor doesn't grok `defined' */
  2306. #ifdef HAVE_SELECT
  2307.   EMACS_GET_TIME (end_time);
  2308.   EMACS_SET_SECS_USECS (timeout, sec, usec);
  2309.   EMACS_ADD_TIME (end_time, end_time, timeout);
  2310.  
  2311.   while (1)
  2312.     {
  2313.       EMACS_GET_TIME (timeout);
  2314.       EMACS_SUB_TIME (timeout, end_time, timeout);
  2315.       if (EMACS_TIME_NEG_P (timeout)
  2316.       || !select (1, 0, 0, 0, &timeout))
  2317.     break;
  2318.     }
  2319. #else /* not HAVE_SELECT */
  2320.   sleep (sec);
  2321. #endif /* HAVE_SELECT */
  2322. #endif /* not VMS */
  2323.   
  2324.   immediate_quit = 0;
  2325. #endif /* no subprocesses */
  2326.  
  2327.   return Qnil;
  2328. }
  2329.  
  2330. /* This is just like wait_reading_process_input, except that
  2331.    it does the redisplay.
  2332.  
  2333.    It's also much like Fsit_for, except that it can be used for
  2334.    waiting for input as well.  One differnce is that sit_for
  2335.    does not call prepare_menu_bars; Fsit_for does call that.  */
  2336.  
  2337. Lisp_Object
  2338. sit_for (sec, usec, reading, display)
  2339.      int sec, usec, reading, display;
  2340. {
  2341.   Lisp_Object read_kbd;
  2342.  
  2343.   if (detect_input_pending ())
  2344.     return Qnil;
  2345.  
  2346.   if (display)
  2347.     redisplay_preserve_echo_area ();
  2348.  
  2349.   if (sec == 0 && usec == 0)
  2350.     return Qt;
  2351.  
  2352. #ifdef SIGIO
  2353.   gobble_input (0);
  2354. #endif
  2355.  
  2356.   XSET (read_kbd, Lisp_Int, reading ? -1 : 1);
  2357.   wait_reading_process_input (sec, usec, read_kbd, display);
  2358.  
  2359.  
  2360.   /* wait_reading_process_input should always be available now; it is
  2361.      simulated in a simple way on systems that don't support
  2362.      subprocesses.  */
  2363. #if 0
  2364.   /* No wait_reading_process_input available.  */
  2365.   immediate_quit = 1;
  2366.   QUIT;
  2367.  
  2368.   waitchannels = 1;
  2369. #ifdef VMS
  2370.   input_wait_timeout (XINT (arg));
  2371. #else                /* not VMS */
  2372. #ifndef HAVE_TIMEVAL
  2373.   timeout_sec = sec;
  2374.   select (1, &waitchannels, 0, 0, &timeout_sec);
  2375. #else /* HAVE_TIMEVAL */
  2376.   timeout.tv_sec = sec;  
  2377.   timeout.tv_usec = usec;
  2378.   select (1, &waitchannels, 0, 0, &timeout);
  2379. #endif /* HAVE_TIMEVAL */
  2380. #endif /* not VMS */
  2381.  
  2382.   immediate_quit = 0;
  2383. #endif 
  2384.  
  2385.   return detect_input_pending () ? Qnil : Qt;
  2386. }
  2387.  
  2388. DEFUN ("sit-for", Fsit_for, Ssit_for, 1, 3, 0,
  2389.   "Perform redisplay, then wait for SECONDS seconds or until input is available.\n\
  2390. SECONDS may be a floating-point value, meaning that you can wait for a\n\
  2391. fraction of a second.  Optional second arg MILLISECONDS specifies an\n\
  2392. additional wait period, in milliseconds; this may be useful if your\n\
  2393. Emacs was built without floating point support.\n\
  2394. \(Not all operating systems support waiting for a fraction of a second.)\n\
  2395. Optional third arg non-nil means don't redisplay, just wait for input.\n\
  2396. Redisplay is preempted as always if input arrives, and does not happen\n\
  2397. if input is available before it starts.\n\
  2398. Value is t if waited the full time with no input arriving.")
  2399.   (seconds, milliseconds, nodisp)
  2400.      Lisp_Object seconds, milliseconds, nodisp;
  2401. {
  2402.   int sec, usec;
  2403.  
  2404.   if (NILP (milliseconds))
  2405.     XSET (milliseconds, Lisp_Int, 0);
  2406.   else
  2407.     CHECK_NUMBER (milliseconds, 1);
  2408.   usec = XINT (milliseconds) * 1000;
  2409.  
  2410. #ifdef LISP_FLOAT_TYPE
  2411.   {
  2412.     double duration = extract_float (seconds);
  2413.     sec = (int) duration;
  2414.     usec += (duration - sec) * 1000000;
  2415.   }
  2416. #else
  2417.   CHECK_NUMBER (seconds, 0);
  2418.   sec = XINT (seconds);
  2419. #endif
  2420.  
  2421. #ifndef EMACS_HAS_USECS
  2422.   if (usec != 0 && sec == 0)
  2423.     error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE);
  2424. #endif
  2425.  
  2426.   if (NILP (nodisp))
  2427.     prepare_menu_bars ();
  2428.   return sit_for (sec, usec, 0, NILP (nodisp));
  2429. }
  2430.  
  2431. char *terminal_type;
  2432.  
  2433. /* Initialization done when Emacs fork is started, before doing stty. */
  2434. /* Determine terminal type and set terminal_driver */
  2435. /* Then invoke its decoding routine to set up variables
  2436.   in the terminal package */
  2437.  
  2438. init_display ()
  2439. {
  2440. #ifdef HAVE_X_WINDOWS
  2441.   extern int display_arg;
  2442. #endif
  2443.  
  2444.   meta_key = 0;
  2445.   inverse_video = 0;
  2446.   cursor_in_echo_area = 0;
  2447.   terminal_type = (char *) 0;
  2448.  
  2449.   /* Now is the time to initialize this; it's used by init_sys_modes
  2450.      during startup.  */
  2451.   Vwindow_system = Qnil;
  2452.  
  2453.   /* If the user wants to use a window system, we shouldn't bother
  2454.      initializing the terminal.  This is especially important when the
  2455.      terminal is so dumb that emacs gives up before and doesn't bother
  2456.      using the window system.
  2457.  
  2458.      If the DISPLAY environment variable is set, try to use X, and die
  2459.      with an error message if that doesn't work.  */
  2460.  
  2461. #ifdef AMIGA
  2462.   amiga_term_open();
  2463.   if (!inhibit_window_system) 
  2464.     {
  2465.       amiga_term_init();
  2466.       /* Using Intuition V2.04 */
  2467.       Vwindow_system = intern ("intuition");
  2468.       Vwindow_system_version = make_number (2);
  2469.  
  2470.       /* CHFIXME: following ok?, move to amiga_term_init? */
  2471.       
  2472.       remake_frame_glyphs (selected_frame);
  2473.       calculate_costs (selected_frame);
  2474.  
  2475.       /* X and Y coordinates of the cursor between updates. */
  2476.       FRAME_CURSOR_X (selected_frame) = 0;
  2477.       FRAME_CURSOR_Y (selected_frame) = 0;
  2478.  
  2479.       return;
  2480.     }
  2481. #endif /* AMIGA */
  2482.  
  2483. #ifdef HAVE_X_WINDOWS
  2484.   if (! display_arg)
  2485.     {
  2486. #ifdef VMS
  2487.       display_arg = (getenv ("DECW$DISPLAY") != 0);
  2488. #else
  2489.       display_arg = (getenv ("DISPLAY") != 0);
  2490. #endif
  2491.     }
  2492.  
  2493.   if (!inhibit_window_system && display_arg)
  2494.     {
  2495.       Vwindow_system = intern ("x");
  2496. #ifdef HAVE_X11
  2497.       Vwindow_system_version = make_number (11);
  2498. #else
  2499.       Vwindow_system_version = make_number (10);
  2500. #endif
  2501.       return;
  2502.     }
  2503. #endif /* HAVE_X_WINDOWS */
  2504.  
  2505.   /* If no window system has been specified, try to use the terminal.  */
  2506.   if (! isatty (0))
  2507.     {
  2508.       fprintf (stderr, "emacs: standard input is not a tty\n");
  2509.       exit (1);
  2510.     }
  2511.  
  2512.   /* Look at the TERM variable */
  2513.   terminal_type = (char *) getenv ("TERM");
  2514.   if (!terminal_type)
  2515.     {
  2516. #ifdef VMS
  2517.       fprintf (stderr, "Please specify your terminal type.\n\
  2518. For types defined in VMS, use  set term /device=TYPE.\n\
  2519. For types not defined in VMS, use  define emacs_term \"TYPE\".\n\
  2520. \(The quotation marks are necessary since terminal types are lower case.)\n");
  2521. #else
  2522.       fprintf (stderr, "Please set the environment variable TERM; see tset(1).\n");
  2523. #endif
  2524.       exit (1);
  2525.     }
  2526.  
  2527. #ifdef VMS
  2528.   /* VMS DCL tends to upcase things, so downcase term type.
  2529.      Hardly any uppercase letters in terminal types; should be none.  */
  2530.   {
  2531.     char *new = (char *) xmalloc (strlen (terminal_type) + 1);
  2532.     char *p;
  2533.  
  2534.     strcpy (new, terminal_type);
  2535.  
  2536.     for (p = new; *p; p++)
  2537.       if (isupper (*p))
  2538.     *p = tolower (*p);
  2539.  
  2540.     terminal_type = new;
  2541.   }    
  2542. #endif
  2543.  
  2544.   term_init (terminal_type);
  2545.  
  2546.   remake_frame_glyphs (selected_frame);
  2547.   calculate_costs (selected_frame);
  2548.  
  2549.   /* X and Y coordinates of the cursor between updates. */
  2550.   FRAME_CURSOR_X (selected_frame) = 0;
  2551.   FRAME_CURSOR_Y (selected_frame) = 0;
  2552.  
  2553. #ifdef SIGWINCH
  2554. #ifndef CANNOT_DUMP
  2555.   if (initialized)
  2556. #endif /* CANNOT_DUMP */
  2557.     signal (SIGWINCH, window_change_signal);
  2558. #endif /* SIGWINCH */
  2559. }
  2560.  
  2561. syms_of_display ()
  2562. {
  2563. #if defined(MULTI_FRAME) || defined(AMIGA) /* CHFIXME: why disabled if non MULTI_FRAME? */
  2564.   defsubr (&Sredraw_frame);
  2565. #endif
  2566.   defsubr (&Sredraw_display);
  2567.   defsubr (&Sframe_or_buffer_changed_p);
  2568.   defsubr (&Sopen_termscript);
  2569.   defsubr (&Sding);
  2570.   defsubr (&Ssit_for);
  2571.   defsubr (&Ssleep_for);
  2572.   defsubr (&Ssend_string_to_terminal);
  2573.  
  2574.   frame_and_buffer_state = Fmake_vector (make_number (1), Qlambda);
  2575.   staticpro (&frame_and_buffer_state);
  2576.  
  2577.   DEFVAR_INT ("baud-rate", &baud_rate,
  2578.     "*The output baud rate of the terminal.\n\
  2579. On most systems, changing this value will affect the amount of padding\n\
  2580. and the other strategic decisions made during redisplay.");
  2581.   DEFVAR_BOOL ("inverse-video", &inverse_video,
  2582.     "*Non-nil means invert the entire frame display.\n\
  2583. This means everything is in inverse video which otherwise would not be.");
  2584.   DEFVAR_BOOL ("visible-bell", &visible_bell,
  2585.     "*Non-nil means try to flash the frame to represent a bell.");
  2586.   DEFVAR_BOOL ("no-redraw-on-reenter", &no_redraw_on_reenter,
  2587.     "*Non-nil means no need to redraw entire frame after suspending.\n\
  2588. A non-nil value is useful if the terminal can automatically preserve\n\
  2589. Emacs's frame display when you reenter Emacs.\n\
  2590. It is up to you to set this variable if your terminal can do that.");
  2591.   DEFVAR_LISP ("window-system", &Vwindow_system,
  2592.     "A symbol naming the window-system under which Emacs is running\n\
  2593. \(such as `x'), or nil if emacs is running on an ordinary terminal.");
  2594.   DEFVAR_LISP ("window-system-version", &Vwindow_system_version,
  2595.     "The version number of the window system in use.\n\
  2596. For X windows, this is 10 or 11.");
  2597.   DEFVAR_BOOL ("cursor-in-echo-area", &cursor_in_echo_area,
  2598.     "Non-nil means put cursor in minibuffer, at end of any message there.");
  2599.   DEFVAR_LISP ("glyph-table", &Vglyph_table,
  2600.     "Table defining how to output a glyph code to the frame.\n\
  2601. If not nil, this is a vector indexed by glyph code to define the glyph.\n\
  2602. Each element can be:\n\
  2603.  integer: a glyph code which this glyph is an alias for.\n\
  2604.  string: output this glyph using that string (not impl. in X windows).\n\
  2605.  nil: this glyph mod 256 is char code to output,\n\
  2606.     and this glyph / 256 is face code for X windows (see `face-id').");
  2607.   Vglyph_table = Qnil;
  2608.  
  2609.   DEFVAR_LISP ("standard-display-table", &Vstandard_display_table,
  2610.     "Display table to use for buffers that specify none.\n\
  2611. See `buffer-display-table' for more information.");
  2612.   Vstandard_display_table = Qnil;
  2613.  
  2614.   /* Initialize `window-system', unless init_display already decided it.  */
  2615. #ifdef CANNOT_DUMP
  2616.   if (noninteractive)
  2617. #endif
  2618.     {
  2619.       Vwindow_system = Qnil;
  2620.       Vwindow_system_version = Qnil;
  2621.     }
  2622. }
  2623.