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