home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / readline / display.c < prev    next >
C/C++ Source or Header  |  1996-01-03  |  22KB  |  827 lines

  1. /* display.c -- readline redisplay facility. */
  2.  
  3. /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
  4.  
  5.    This file is part of the GNU Readline Library, a library for
  6.    reading lines of text with interactive input and history editing.
  7.  
  8.    The GNU Readline Library is free software; you can redistribute it
  9.    and/or modify it under the terms of the GNU General Public License
  10.    as published by the Free Software Foundation; either version 1, or
  11.    (at your option) any later version.
  12.  
  13.    The GNU Readline Library is distributed in the hope that it will be
  14.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  15.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    The GNU General Public License is often shipped with GNU software, and
  19.    is generally kept in a file called COPYING or LICENSE.  If you do not
  20.    have a copy of the license, write to the Free Software Foundation,
  21.    675 Mass Ave, Cambridge, MA 02139, USA. */
  22.  
  23. #include <stdio.h>
  24. #include <sys/types.h>
  25.  
  26. /* System-specific feature definitions and include files. */
  27. #include "rldefs.h"
  28.  
  29. /* Some standard library routines. */
  30. #include "readline.h"
  31. #include "history.h"
  32.  
  33. #if defined (__GO32__)
  34. #  include <sys/pc.h>
  35. #endif /* __GO32__ */
  36.  
  37. #if !defined (strchr) && !defined (__STDC__)
  38. extern char *strchr (), *strrchr ();
  39. #endif /* !strchr && !__STDC__ */
  40.  
  41. /* Global and pseudo-global variables and functions
  42.    imported from readline.c. */
  43. extern char *rl_prompt;
  44. extern int readline_echoing_p;
  45. extern char *term_clreol, *term_im, *term_ic,  *term_ei, *term_DC;
  46. /* Termcap variables. */
  47. extern char *term_up, *term_dc, *term_cr, *term_IC;
  48. extern int screenheight, screenwidth, terminal_can_insert, term_xn;
  49.  
  50. extern void _rl_output_some_chars ();
  51. extern int _rl_output_character_function ();
  52.  
  53. extern int _rl_convert_meta_chars_to_ascii;
  54. extern int _rl_horizontal_scroll_mode;
  55. extern int _rl_mark_modified_lines;
  56. extern int _rl_prefer_visible_bell;
  57.  
  58. /* Pseudo-global functions (local to the readline library) exported
  59.    by this file. */
  60. void _rl_move_cursor_relative (), _rl_output_some_chars ();
  61. void _rl_move_vert ();
  62.  
  63. static void update_line (), clear_to_eol ();
  64. static void delete_chars (), insert_some_chars ();
  65.  
  66. extern char *xmalloc (), *xrealloc ();
  67.  
  68. /* **************************************************************** */
  69. /*                                    */
  70. /*            Display stuff                    */
  71. /*                                    */
  72. /* **************************************************************** */
  73.  
  74. /* This is the stuff that is hard for me.  I never seem to write good
  75.    display routines in C.  Let's see how I do this time. */
  76.  
  77. /* (PWP) Well... Good for a simple line updater, but totally ignores
  78.    the problems of input lines longer than the screen width.
  79.  
  80.    update_line and the code that calls it makes a multiple line,
  81.    automatically wrapping line update.  Carefull attention needs
  82.    to be paid to the vertical position variables. */
  83.  
  84. /* Keep two buffers; one which reflects the current contents of the
  85.    screen, and the other to draw what we think the new contents should
  86.    be.  Then compare the buffers, and make whatever changes to the
  87.    screen itself that we should.  Finally, make the buffer that we
  88.    just drew into be the one which reflects the current contents of the
  89.    screen, and place the cursor where it belongs.
  90.  
  91.    Commands that want to can fix the display themselves, and then let
  92.    this function know that the display has been fixed by setting the
  93.    RL_DISPLAY_FIXED variable.  This is good for efficiency. */
  94.  
  95. /* Global variables declared here. */
  96. /* What YOU turn on when you have handled all redisplay yourself. */
  97. int rl_display_fixed = 0;
  98.  
  99. /* The stuff that gets printed out before the actual text of the line.
  100.    This is usually pointing to rl_prompt. */
  101. char *rl_display_prompt = (char *)NULL;
  102.  
  103. /* Pseudo-global variables declared here. */
  104. /* The visible cursor position.  If you print some text, adjust this. */
  105. int _rl_last_c_pos = 0;
  106. int _rl_last_v_pos = 0;
  107.  
  108. /* Number of lines currently on screen minus 1. */
  109. int _rl_vis_botlin = 0;
  110.  
  111. /* Variables used only in this file. */
  112. /* The last left edge of text that was displayed.  This is used when
  113.    doing horizontal scrolling.  It shifts in thirds of a screenwidth. */
  114. static int last_lmargin = 0;
  115.  
  116. /* The line display buffers.  One is the line currently displayed on
  117.    the screen.  The other is the line about to be displayed. */
  118. static char *visible_line = (char *)NULL;
  119. static char *invisible_line = (char *)NULL;
  120.  
  121. /* A buffer for `modeline' messages. */
  122. static char msg_buf[128];
  123.  
  124. /* Non-zero forces the redisplay even if we thought it was unnecessary. */
  125. static int forced_display = 0;
  126.  
  127. /* Default and initial buffer size.  Can grow. */
  128. static int line_size = 1024;
  129.  
  130. /* Basic redisplay algorithm. */
  131. void
  132. rl_redisplay ()
  133. {
  134.   register int in, out, c, linenum;
  135.   register char *line = invisible_line;
  136.   char *prompt_this_line;
  137.   int c_pos = 0;
  138.   int inv_botlin = 0;        /* Number of lines in newly drawn buffer. */
  139.  
  140.   if (!readline_echoing_p)
  141.     return;
  142.  
  143.   if (!rl_display_prompt)
  144.     rl_display_prompt = "";
  145.  
  146.   if (!invisible_line)
  147.     {
  148.       visible_line = (char *)xmalloc (line_size);
  149.       invisible_line = (char *)xmalloc (line_size);
  150.       line = invisible_line;
  151.       for (in = 0; in < line_size; in++)
  152.     {
  153.       visible_line[in] = 0;
  154.       invisible_line[in] = 1;
  155.     }
  156.       rl_on_new_line ();
  157.     }
  158.  
  159.   /* Draw the line into the buffer. */
  160.   c_pos = -1;
  161.  
  162.   /* Mark the line as modified or not.  We only do this for history
  163.      lines. */
  164.   out = 0;
  165.   if (_rl_mark_modified_lines && current_history () && rl_undo_list)
  166.     {
  167.       line[out++] = '*';
  168.       line[out] = '\0';
  169.     }
  170.  
  171.   /* If someone thought that the redisplay was handled, but the currently
  172.      visible line has a different modification state than the one about
  173.      to become visible, then correct the caller's misconception. */
  174.   if (visible_line[0] != invisible_line[0])
  175.     rl_display_fixed = 0;
  176.  
  177.   prompt_this_line = strrchr (rl_display_prompt, '\n');
  178.   if (!prompt_this_line)
  179.     prompt_this_line = rl_display_prompt;
  180.   else
  181.     {
  182.       prompt_this_line++;
  183.       if (forced_display)
  184.     _rl_output_some_chars
  185.       (rl_display_prompt, prompt_this_line - rl_display_prompt);
  186.     }
  187.  
  188.   strncpy (line + out,  prompt_this_line, strlen (prompt_this_line));
  189.   out += strlen (prompt_this_line);
  190.   line[out] = '\0';
  191.  
  192.   for (in = 0; in < rl_end; in++)
  193.     {
  194.       c = (unsigned char)rl_line_buffer[in];
  195.  
  196.       if (out + 8 >= line_size)        /* XXX - 8 for \t */
  197.     {
  198.       line_size *= 2;
  199.       visible_line = (char *)xrealloc (visible_line, line_size);
  200.       invisible_line = (char *)xrealloc (invisible_line, line_size);
  201.       line = invisible_line;
  202.     }
  203.  
  204.       if (in == rl_point)
  205.     c_pos = out;
  206.  
  207.       if (META_CHAR (c))
  208.     {
  209.       if (_rl_convert_meta_chars_to_ascii)
  210.         {
  211.           sprintf (line + out, "\\%o", c);
  212.           out += 4;
  213.         }
  214.       else
  215.         line[out++] = c;      
  216.     }
  217. #define DISPLAY_TABS
  218. #if defined (DISPLAY_TABS)
  219.       else if (c == '\t')
  220.     {
  221.       register int newout = (out | (int)7) + 1;
  222.       while (out < newout)
  223.         line[out++] = ' ';
  224.     }
  225. #endif
  226.       else if (c < ' ')
  227.     {
  228.       line[out++] = '^';
  229.       line[out++] = UNCTRL (c);    /* XXX was c ^ 0x40 */
  230.     }
  231.       else if (c == 127)
  232.     {
  233.       line[out++] = '^';
  234.       line[out++] = '?';
  235.     }
  236.       else
  237.     line[out++] = c;
  238.     }
  239.   line[out] = '\0';
  240.   if (c_pos < 0)
  241.     c_pos = out;
  242.  
  243.   /* PWP: now is when things get a bit hairy.  The visible and invisible
  244.      line buffers are really multiple lines, which would wrap every
  245.      screenwidth characters.  Go through each in turn, finding
  246.      the changed region and updating it.  The line order is top to bottom. */
  247.  
  248.   /* If we can move the cursor up and down, then use multiple lines,
  249.      otherwise, let long lines display in a single terminal line, and
  250.      horizontally scroll it. */
  251.  
  252.   if (!_rl_horizontal_scroll_mode && term_up && *term_up)
  253.     {
  254.       int total_screen_chars = (screenwidth * screenheight);
  255.  
  256.       if (!rl_display_fixed || forced_display)
  257.     {
  258.       forced_display = 0;
  259.  
  260.       /* If we have more than a screenful of material to display, then
  261.          only display a screenful.  We should display the last screen,
  262.          not the first.  I'll fix this in a minute. */
  263.       if (out >= total_screen_chars)
  264.         out = total_screen_chars - 1;
  265.  
  266.       /* Number of screen lines to display. */
  267.       inv_botlin = out / screenwidth;
  268.  
  269.       /* For each line in the buffer, do the updating display. */
  270.       for (linenum = 0; linenum <= inv_botlin; linenum++)
  271.         update_line (linenum > _rl_vis_botlin ? ""
  272.              : &visible_line[linenum * screenwidth],
  273.              &invisible_line[linenum * screenwidth],
  274.              linenum);
  275.  
  276.       /* We may have deleted some lines.  If so, clear the left over
  277.          blank ones at the bottom out. */
  278.       if (_rl_vis_botlin > inv_botlin)
  279.         {
  280.           char *tt;
  281.           for (; linenum <= _rl_vis_botlin; linenum++)
  282.         {
  283.           tt = &visible_line[linenum * screenwidth];
  284.           _rl_move_vert (linenum);
  285.           _rl_move_cursor_relative (0, tt);
  286.           clear_to_eol
  287.             ((linenum == _rl_vis_botlin) ? strlen (tt) : screenwidth);
  288.         }
  289.         }
  290.       _rl_vis_botlin = inv_botlin;
  291.  
  292.       /* Move the cursor where it should be. */
  293.       _rl_move_vert (c_pos / screenwidth);
  294.       _rl_move_cursor_relative (c_pos % screenwidth,
  295.                 &invisible_line[(c_pos / screenwidth) * screenwidth]);
  296.     }
  297.     }
  298.   else                /* Do horizontal scrolling. */
  299.     {
  300.       int lmargin;
  301.  
  302.       /* Always at top line. */
  303.       _rl_last_v_pos = 0;
  304.  
  305.       /* If the display position of the cursor would be off the edge
  306.      of the screen, start the display of this line at an offset that
  307.      leaves the cursor on the screen. */
  308.       if (c_pos - last_lmargin > screenwidth - 2)
  309.     lmargin = (c_pos / (screenwidth / 3) - 2) * (screenwidth / 3);
  310.       else if (c_pos - last_lmargin < 1)
  311.     lmargin = ((c_pos - 1) / (screenwidth / 3)) * (screenwidth / 3);
  312.       else
  313.     lmargin = last_lmargin;
  314.  
  315.       /* If the first character on the screen isn't the first character
  316.      in the display line, indicate this with a special character. */
  317.       if (lmargin > 0)
  318.     line[lmargin] = '<';
  319.  
  320.       if (lmargin + screenwidth < out)
  321.     line[lmargin + screenwidth - 1] = '>';
  322.  
  323.       if (!rl_display_fixed || forced_display || lmargin != last_lmargin)
  324.     {
  325.       forced_display = 0;
  326.       update_line (&visible_line[last_lmargin],
  327.                &invisible_line[lmargin], 0);
  328.  
  329.       _rl_move_cursor_relative (c_pos - lmargin, &invisible_line[lmargin]);
  330.       last_lmargin = lmargin;
  331.     }
  332.     }
  333.   fflush (rl_outstream);
  334.  
  335.   /* Swap visible and non-visible lines. */
  336.   {
  337.     char *temp = visible_line;
  338.     visible_line = invisible_line;
  339.     invisible_line = temp;
  340.     rl_display_fixed = 0;
  341.   }
  342. }
  343.  
  344. /* PWP: update_line() is based on finding the middle difference of each
  345.    line on the screen; vis:
  346.  
  347.                  /old first difference
  348.     /beginning of line   |              /old last same       /old EOL
  349.     v             v              v                    v
  350. old:    eddie> Oh, my little gruntle-buggy is to me, as lurgid as
  351. new:    eddie> Oh, my little buggy says to me, as lurgid as
  352.     ^             ^        ^               ^
  353.     \beginning of line   |        \new last same       \new end of line
  354.                  \new first difference
  355.  
  356.    All are character pointers for the sake of speed.  Special cases for
  357.    no differences, as well as for end of line additions must be handeled.
  358.  
  359.    Could be made even smarter, but this works well enough */
  360. static void
  361. update_line (old, new, current_line)
  362.      register char *old, *new;
  363.      int current_line;
  364. {
  365.   register char *ofd, *ols, *oe, *nfd, *nls, *ne;
  366.   int lendiff, wsatend;
  367.  
  368.   if (_rl_last_c_pos == screenwidth && term_xn && new[0])
  369.     {
  370.       putc (new[0], rl_outstream);
  371.       _rl_last_c_pos = 1;
  372.       _rl_last_v_pos++;
  373.       if (old[0])
  374.     old[0] = new[0];
  375.     }
  376.  
  377.   /* Find first difference. */
  378.   for (ofd = old, nfd = new;
  379.        (ofd - old < screenwidth) && *ofd && (*ofd == *nfd);
  380.        ofd++, nfd++)
  381.     ;
  382.  
  383.   /* Move to the end of the screen line. */
  384.   for (oe = ofd; ((oe - old) < screenwidth) && *oe; oe++);
  385.   for (ne = nfd; ((ne - new) < screenwidth) && *ne; ne++);
  386.  
  387.   /* If no difference, continue to next line. */
  388.   if (ofd == oe && nfd == ne)
  389.     return;
  390.  
  391.   wsatend = 1;            /* flag for trailing whitespace */
  392.   ols = oe - 1;            /* find last same */
  393.   nls = ne - 1;
  394.   while ((ols > ofd) && (nls > nfd) && (*ols == *nls))
  395.     {
  396.       if (*ols != ' ')
  397.     wsatend = 0;
  398.       ols--;
  399.       nls--;
  400.     }
  401.  
  402.   if (wsatend)
  403.     {
  404.       ols = oe;
  405.       nls = ne;
  406.     }
  407.   else if (*ols != *nls)
  408.     {
  409.       if (*ols)            /* don't step past the NUL */
  410.     ols++;
  411.       if (*nls)
  412.     nls++;
  413.     }
  414.  
  415.   _rl_move_vert (current_line);
  416.   _rl_move_cursor_relative (ofd - old, old);
  417.  
  418.   /* if (len (new) > len (old)) */
  419.   lendiff = (nls - nfd) - (ols - ofd);
  420.  
  421.   /* Insert (diff (len (old), len (new)) ch. */
  422.   if (lendiff > 0)
  423.     {
  424.       if (terminal_can_insert)
  425.     {
  426.       /* Sometimes it is cheaper to print the characters rather than
  427.          use the terminal's capabilities. */
  428.       if ((2 * (ne - nfd)) < lendiff && !term_IC)
  429.         {
  430.           _rl_output_some_chars (nfd, (ne - nfd));
  431.           _rl_last_c_pos += (ne - nfd);
  432.         }
  433.       else
  434.         {
  435.           if (*ols)
  436.         {
  437.           insert_some_chars (nfd, lendiff);
  438.           _rl_last_c_pos += lendiff;
  439.         }
  440.           else
  441.         {
  442.           /* At the end of a line the characters do not have to
  443.              be "inserted".  They can just be placed on the screen. */
  444.           _rl_output_some_chars (nfd, lendiff);
  445.           _rl_last_c_pos += lendiff;
  446.         }
  447.           /* Copy (new) chars to screen from first diff to last match. */
  448.           if (((nls - nfd) - lendiff) > 0)
  449.         {
  450.           _rl_output_some_chars (&nfd[lendiff], ((nls - nfd) - lendiff));
  451.           _rl_last_c_pos += ((nls - nfd) - lendiff);
  452.         }
  453.         }
  454.     }
  455.       else
  456.     {        /* cannot insert chars, write to EOL */
  457.       _rl_output_some_chars (nfd, (ne - nfd));
  458.       _rl_last_c_pos += (ne - nfd);
  459.     }
  460.     }
  461.   else                /* Delete characters from line. */
  462.     {
  463.       /* If possible and inexpensive to use terminal deletion, then do so. */
  464.       if (term_dc && (2 * (ne - nfd)) >= (-lendiff))
  465.     {
  466.       if (lendiff)
  467.         delete_chars (-lendiff); /* delete (diff) characters */
  468.  
  469.       /* Copy (new) chars to screen from first diff to last match */
  470.       if ((nls - nfd) > 0)
  471.         {
  472.           _rl_output_some_chars (nfd, (nls - nfd));
  473.           _rl_last_c_pos += (nls - nfd);
  474.         }
  475.     }
  476.       /* Otherwise, print over the existing material. */
  477.       else
  478.     {
  479.       _rl_output_some_chars (nfd, (ne - nfd));
  480.       _rl_last_c_pos += (ne - nfd);
  481.       clear_to_eol ((oe - old) - (ne - new));
  482.     }
  483.     }
  484. }
  485.  
  486. /* Tell the update routines that we have moved onto a new (empty) line. */
  487. rl_on_new_line ()
  488. {
  489.   if (visible_line)
  490.     visible_line[0] = '\0';
  491.  
  492.   _rl_last_c_pos = _rl_last_v_pos = 0;
  493.   _rl_vis_botlin = last_lmargin = 0;
  494. }
  495.  
  496. /* Actually update the display, period. */
  497. rl_forced_update_display ()
  498. {
  499.   if (visible_line)
  500.     {
  501.       register char *temp = visible_line;
  502.  
  503.       while (*temp) *temp++ = '\0';
  504.     }
  505.   rl_on_new_line ();
  506.   forced_display++;
  507.   rl_redisplay ();
  508. }
  509.  
  510. /* Move the cursor from _rl_last_c_pos to NEW, which are buffer indices.
  511.    DATA is the contents of the screen line of interest; i.e., where
  512.    the movement is being done. */
  513. void
  514. _rl_move_cursor_relative (new, data)
  515.      int new;
  516.      char *data;
  517. {
  518.   register int i;
  519.  
  520.   /* It may be faster to output a CR, and then move forwards instead
  521.      of moving backwards. */
  522.   if (new + 1 < _rl_last_c_pos - new)
  523.     {
  524. #if defined(__MSDOS__) || defined(__WIN32__) || defined (_MSC_VER)
  525.       putc('\r', rl_outstream);
  526. #else
  527.       tputs (term_cr, 1, _rl_output_character_function);
  528. #endif
  529.       _rl_last_c_pos = 0;
  530.     }
  531.  
  532.   if (_rl_last_c_pos == new) return;
  533.  
  534.   if (_rl_last_c_pos < new)
  535.     {
  536.       /* Move the cursor forward.  We do it by printing the command
  537.      to move the cursor forward if there is one, else print that
  538.      portion of the output buffer again.  Which is cheaper? */
  539.  
  540.       /* The above comment is left here for posterity.  It is faster
  541.      to print one character (non-control) than to print a control
  542.      sequence telling the terminal to move forward one character.
  543.      That kind of control is for people who don't know what the
  544.      data is underneath the cursor. */
  545. #if defined (HACK_TERMCAP_MOTION)
  546.       extern char *term_forward_char;
  547.  
  548.       if (term_forward_char)
  549.     for (i = _rl_last_c_pos; i < new; i++)
  550.       tputs (term_forward_char, 1, _rl_output_character_function);
  551.       else
  552.     for (i = _rl_last_c_pos; i < new; i++)
  553.       putc (data[i], rl_outstream);
  554. #else
  555.       for (i = _rl_last_c_pos; i < new; i++)
  556.     putc (data[i], rl_outstream);
  557. #endif                /* HACK_TERMCAP_MOTION */
  558.     }
  559.   else
  560.     backspace (_rl_last_c_pos - new);
  561.   _rl_last_c_pos = new;
  562. }
  563.  
  564. /* PWP: move the cursor up or down. */
  565. void
  566. _rl_move_vert (to)
  567.      int to;
  568. {
  569.   register int delta, i;
  570.  
  571.   if (_rl_last_v_pos == to || to > screenheight)
  572.     return;
  573.  
  574. #if defined (MINIMAL)
  575.   {
  576.     int row, col;
  577.  
  578.     ScreenGetCursor (&row, &col);
  579.     ScreenSetCursor ((row + to - _rl_last_v_pos), col);
  580.   }
  581. #else /* !MINIMAL */
  582.  
  583.   if ((delta = to - _rl_last_v_pos) > 0)
  584.     {
  585.       for (i = 0; i < delta; i++)
  586.     putc ('\n', rl_outstream);
  587.       tputs (term_cr, 1, _rl_output_character_function);
  588.       _rl_last_c_pos = 0;
  589.     }
  590.   else
  591.     {            /* delta < 0 */
  592.       if (term_up && *term_up)
  593.     for (i = 0; i < -delta; i++)
  594.       tputs (term_up, 1, _rl_output_character_function);
  595.     }
  596. #endif /* !MINIMAL */
  597.   _rl_last_v_pos = to;        /* Now TO is here */
  598. }
  599.  
  600. /* Physically print C on rl_outstream.  This is for functions which know
  601.    how to optimize the display. */
  602. rl_show_char (c)
  603.      int c;
  604. {
  605.   if (META_CHAR (c) && _rl_convert_meta_chars_to_ascii)
  606.     {
  607.       fprintf (rl_outstream, "M-");
  608.       c = UNMETA (c);
  609.     }
  610.  
  611. #if defined (DISPLAY_TABS)
  612.   if (c < 32 && c != '\t')
  613. #else
  614.   if (c < 32)
  615. #endif /* !DISPLAY_TABS */
  616.     {
  617.       c += 64;
  618.     }
  619.  
  620.   putc (c, rl_outstream);
  621.   fflush (rl_outstream);
  622. }
  623.  
  624. int
  625. rl_character_len (c, pos)
  626.      register int c, pos;
  627. {
  628.   if (META_CHAR (c))
  629.     return (_rl_convert_meta_chars_to_ascii ? 4 : 1);
  630.  
  631.   if (c == '\t')
  632.     {
  633. #if defined (DISPLAY_TABS)
  634.       return (((pos | (int)7) + 1) - pos);
  635. #else
  636.       return (2);
  637. #endif /* !DISPLAY_TABS */
  638.     }
  639.  
  640.   if (isprint (c))
  641.     return (1);
  642.   else
  643.     return (2);
  644. }
  645.  
  646. /* How to print things in the "echo-area".  The prompt is treated as a
  647.    mini-modeline. */
  648.  
  649. #if defined (HAVE_VARARGS_H)
  650. rl_message (va_alist)
  651.      va_dcl
  652. {
  653.   char *format;
  654.   va_list args;
  655.  
  656.   va_start (args);
  657.   format = va_arg (args, char *);
  658.   vsprintf (msg_buf, format, args);
  659.   va_end (args);
  660.  
  661.   rl_display_prompt = msg_buf;
  662.   rl_redisplay ();
  663. }
  664. #else /* !HAVE_VARARGS_H */
  665. rl_message (format, arg1, arg2)
  666.      char *format;
  667. {
  668.   sprintf (msg_buf, format, arg1, arg2);
  669.   rl_display_prompt = msg_buf;
  670.   rl_redisplay ();
  671. }
  672. #endif /* !HAVE_VARARGS_H */
  673.  
  674. /* How to clear things from the "echo-area". */
  675. rl_clear_message ()
  676. {
  677.   rl_display_prompt = rl_prompt;
  678.   rl_redisplay ();
  679. }
  680.  
  681. rl_reset_line_state ()
  682. {
  683.   rl_on_new_line ();
  684.  
  685.   rl_display_prompt = rl_prompt ? rl_prompt : "";
  686.   forced_display = 1;
  687. }
  688.  
  689. /* Quick redisplay hack when erasing characters at the end of the line. */
  690. void
  691. _rl_erase_at_end_of_line (l)
  692.      int l;
  693. {
  694.   register int i;
  695.  
  696.   backspace (l);
  697.   for (i = 0; i < l; i++)
  698.     putc (' ', rl_outstream);
  699.   backspace (l);
  700.   for (i = 0; i < l; i++)
  701.     visible_line[--_rl_last_c_pos] = '\0';
  702.   rl_display_fixed++;
  703. }
  704.  
  705. /* Clear to the end of the line.  COUNT is the minimum
  706.    number of character spaces to clear, */
  707. static void
  708. clear_to_eol (count)
  709.      int count;
  710. {
  711. #if !defined (MINIMAL)
  712.   if (term_clreol)
  713.     {
  714.       tputs (term_clreol, 1, _rl_output_character_function);
  715.     }
  716.   else
  717. #endif /* !__GO32__ */
  718.     {
  719.       register int i;
  720.  
  721.       /* Do one more character space. */
  722.       count++;
  723.  
  724.       for (i = 0; i < count; i++)
  725.     putc (' ', rl_outstream);
  726.  
  727.       backspace (count);
  728.     }
  729. }
  730.  
  731. /* Insert COUNT characters from STRING to the output stream. */
  732. static void
  733. insert_some_chars (string, count)
  734.      char *string;
  735.      int count;
  736. {
  737. #if defined(__WIN32__) || defined(_MSC_VER)
  738.  
  739. #else
  740. #if defined (__GO32__)
  741.   int row, col, width;
  742.   short *row_start;
  743.   ScreenGetCursor (&row, &col);
  744.   width = ScreenCols ();
  745.   row_start = ScreenPrimary + (row * width);
  746.  
  747.   memcpy (row_start + col + count, row_start + col, width - col - count);
  748.  
  749.   /* Place the text on the screen. */
  750.   _rl_output_some_chars (string, count);
  751. #else /* !__GO32__ */
  752.  
  753.   /* If IC is defined, then we do not have to "enter" insert mode. */
  754.   if (term_IC)
  755.     {
  756.       char *tgoto (), *buffer;
  757.       buffer = tgoto (term_IC, 0, count);
  758.       tputs (buffer, 1, _rl_output_character_function);
  759.       _rl_output_some_chars (string, count);
  760.     }
  761.   else
  762.     {
  763.       register int i;
  764.  
  765.       /* If we have to turn on insert-mode, then do so. */
  766.       if (term_im && *term_im)
  767.     tputs (term_im, 1, _rl_output_character_function);
  768.  
  769.       /* If there is a special command for inserting characters, then
  770.      use that first to open up the space. */
  771.       if (term_ic && *term_ic)
  772.     {
  773.       for (i = count; i--; )
  774.         tputs (term_ic, 1, _rl_output_character_function);
  775.     }
  776.  
  777.       /* Print the text. */
  778.       _rl_output_some_chars (string, count);
  779.  
  780.       /* If there is a string to turn off insert mode, we had best use
  781.      it now. */
  782.       if (term_ei && *term_ei)
  783.     tputs (term_ei, 1, _rl_output_character_function);
  784.     }
  785. #endif /* !__GO32__ */
  786. #endif
  787. }
  788.  
  789. /* Delete COUNT characters from the display line. */
  790. static void
  791. delete_chars (count)
  792.      int count;
  793. {
  794. #if defined(__WIN32__) || defined(_MSC_VER)
  795.  
  796. #else
  797. #if defined (__GO32__)
  798.   int row, col, width;
  799.   short *row_start;
  800.  
  801.   ScreenGetCursor (&row, &col);
  802.   width = ScreenCols ();
  803.   row_start = ScreenPrimary + (row * width);
  804.  
  805.   memcpy (row_start + col, row_start + col + count, width - col - count);
  806.   memset (row_start + width - count, 0, count * 2);
  807. #else /* !__GO32__ */
  808.  
  809.   if (count > screenwidth)
  810.     return;
  811.  
  812.   if (term_DC && *term_DC)
  813.     {
  814.       char *tgoto (), *buffer;
  815.       buffer = tgoto (term_DC, count, count);
  816.       tputs (buffer, count, _rl_output_character_function);
  817.     }
  818.   else
  819.     {
  820.       if (term_dc && *term_dc)
  821.     while (count--)
  822.       tputs (term_dc, 1, _rl_output_character_function);
  823.     }
  824. #endif /* !__GO32__ */
  825. #endif
  826. }
  827.