home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / debug / gdb / readline / readline.c < prev    next >
C/C++ Source or Header  |  1995-07-28  |  75KB  |  3,300 lines

  1. /* readline.c -- a general facility for reading lines of input
  2.    with emacs style editing and completion. */
  3.  
  4. /* Copyright 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
  5.  
  6.    This file is part of the GNU Readline Library, a library for
  7.    reading lines of text with interactive input and history editing.
  8.  
  9.    The GNU Readline Library is free software; you can redistribute it
  10.    and/or modify it under the terms of the GNU General Public License
  11.    as published by the Free Software Foundation; either version 1, or
  12.    (at your option) any later version.
  13.  
  14.    The GNU Readline Library is distributed in the hope that it will be
  15.    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  16.    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.    GNU General Public License for more details.
  18.  
  19.    The GNU General Public License is often shipped with GNU software, and
  20.    is generally kept in a file called COPYING or LICENSE.  If you do not
  21.    have a copy of the license, write to the Free Software Foundation,
  22.    675 Mass Ave, Cambridge, MA 02139, USA. */
  23.  
  24. #include "sysdep.h"
  25. #include <stdio.h>
  26. #include <fcntl.h>
  27. #ifndef    NO_SYS_FILE
  28. #include <sys/file.h>
  29. #endif
  30. #include <signal.h>
  31.  
  32. /* This is needed to include support for TIOCGWINSZ and window resizing. */
  33. #if defined (OSF1) || defined (BSD386) || defined (_386BSD) || defined (AIX)
  34. #  include <sys/ioctl.h>
  35. #endif /* OSF1 */
  36.  
  37. #if defined (HAVE_UNISTD_H)
  38. #  include <unistd.h>
  39. #endif
  40.  
  41. #include <errno.h>
  42. /* Not all systems declare ERRNO in errno.h... and some systems #define it! */
  43. #if !defined (errno)
  44. extern int errno;
  45. #endif /* !errno */
  46.  
  47. extern char * getenv ();
  48.  
  49. #include <setjmp.h>
  50. #include <sys/stat.h>
  51.  
  52. /* System-specific feature definitions and include files. */
  53. #include "rldefs.h"
  54.  
  55. /* Some standard library routines. */
  56. #include "readline.h"
  57. #include "history.h"
  58.  
  59. /* NOTE: Functions and variables prefixed with `_rl_' are
  60.    pseudo-global: they are global so they can be shared
  61.    between files in the readline library, but are not intended
  62.    to be visible to readline callers. */
  63.  
  64. /* Functions imported from other files in the library. */
  65. extern char *tgetstr ();
  66. extern void rl_prep_terminal (), rl_deprep_terminal ();
  67. extern void rl_vi_set_last ();
  68. extern Function *rl_function_of_keyseq ();
  69. extern char *tilde_expand ();
  70.  
  71. /* External redisplay functions and variables from display.c */
  72. extern void rl_redisplay ();
  73. extern void _rl_move_vert ();
  74.  
  75. extern void _rl_erase_at_end_of_line ();
  76. extern void _rl_move_cursor_relative ();
  77.  
  78. extern int _rl_vis_botlin;
  79. extern int _rl_last_c_pos;
  80. extern int rl_display_fixed;
  81.  
  82. /* Variables imported from complete.c. */
  83. extern char *rl_completer_word_break_characters;
  84. extern char *rl_basic_word_break_characters;
  85. extern Function *rl_symbolic_link_hook;
  86. extern int rl_completion_query_items;
  87. extern int rl_complete_with_tilde_expansion;
  88.  
  89. /* Forward declarations used in this file. */
  90. void rl_dispatch ();
  91. void free_history_entry ();
  92. int _rl_output_character_function ();
  93.  
  94. #if !defined (MINIMAL)
  95. void _rl_set_screen_size ();
  96. #endif /* !MINIMAL */
  97.  
  98. void free_undo_list (), rl_add_undo ();
  99.  
  100. #if !defined (MINIMAL)
  101. static void readline_default_bindings ();
  102. #endif /* !MINIMAL */
  103.  
  104. #if defined (__GO32__)
  105. #  include <sys/pc.h>
  106. #  undef HANDLE_SIGNALS
  107. #endif /* __GO32__ */
  108.  
  109. #if defined (STATIC_MALLOC)
  110. static char *xmalloc (), *xrealloc ();
  111. #else
  112. extern char *xmalloc (), *xrealloc ();
  113. #endif /* STATIC_MALLOC */
  114.  
  115.  
  116. /* **************************************************************** */
  117. /*                                    */
  118. /*            Line editing input utility            */
  119. /*                                    */
  120. /* **************************************************************** */
  121.  
  122. static char *LibraryVersion = "2.0 (Cygnus)";
  123.  
  124. /* A pointer to the keymap that is currently in use.
  125.    By default, it is the standard emacs keymap. */
  126. Keymap _rl_keymap = emacs_standard_keymap;
  127.  
  128. /* The current style of editing. */
  129. int rl_editing_mode = emacs_mode;
  130.  
  131. /* Non-zero if the previous command was a kill command. */
  132. static int last_command_was_kill = 0;
  133.  
  134. /* The current value of the numeric argument specified by the user. */
  135. int rl_numeric_arg = 1;
  136.  
  137. /* Non-zero if an argument was typed. */
  138. int rl_explicit_arg = 0;
  139.  
  140. /* Temporary value used while generating the argument. */
  141. int rl_arg_sign = 1;
  142.  
  143. /* Non-zero means we have been called at least once before. */
  144. static int rl_initialized = 0;
  145.  
  146. /* If non-zero, this program is running in an EMACS buffer. */
  147. static char *running_in_emacs = (char *)NULL;
  148.  
  149. /* The current offset in the current input line. */
  150. int rl_point;
  151.  
  152. /* Mark in the current input line. */
  153. int rl_mark;
  154.  
  155. /* Length of the current input line. */
  156. int rl_end;
  157.  
  158. /* Make this non-zero to return the current input_line. */
  159. int rl_done;
  160.  
  161. /* The last function executed by readline. */
  162. Function *rl_last_func = (Function *)NULL;
  163.  
  164. /* Top level environment for readline_internal (). */
  165. static jmp_buf readline_top_level;
  166.  
  167. /* The streams we interact with. */
  168. static FILE *in_stream, *out_stream;
  169.  
  170. /* The names of the streams that we do input and output to. */
  171. FILE *rl_instream = (FILE *)NULL;
  172. FILE *rl_outstream = (FILE *)NULL;
  173.  
  174. /* Non-zero means echo characters as they are read. */
  175. int readline_echoing_p = 1;
  176.  
  177. /* Current prompt. */
  178. char *rl_prompt;
  179.  
  180. /* The number of characters read in order to type this complete command. */
  181. int rl_key_sequence_length = 0;
  182.  
  183. /* If non-zero, then this is the address of a function to call just
  184.    before readline_internal () prints the first prompt. */
  185. Function *rl_startup_hook = (Function *)NULL;
  186.  
  187. /* What we use internally.  You should always refer to RL_LINE_BUFFER. */
  188. static char *the_line;
  189.  
  190. /* The character that can generate an EOF.  Really read from
  191.    the terminal driver... just defaulted here. */
  192. int _rl_eof_char = CTRL ('D');
  193.  
  194. /* Non-zero makes this the next keystroke to read. */
  195. int rl_pending_input = 0;
  196.  
  197. /* Pointer to a useful terminal name. */
  198. char *rl_terminal_name = (char *)NULL;
  199.  
  200. /* Non-zero means to always use horizontal scrolling in line display. */
  201. int _rl_horizontal_scroll_mode = 0;
  202.  
  203. /* Non-zero means to display an asterisk at the starts of history lines
  204.    which have been modified. */
  205. int _rl_mark_modified_lines = 0;  
  206.    
  207. /* Non-zero means to use a visible bell if one is available rather than
  208.    simply ringing the terminal bell. */
  209. int _rl_prefer_visible_bell = 0;
  210.      
  211. /* Line buffer and maintenence. */
  212. char *rl_line_buffer = (char *)NULL;
  213. int rl_line_buffer_len = 0;
  214. #define DEFAULT_BUFFER_SIZE 256
  215.  
  216.  
  217. /* **************************************************************** */
  218. /*                                    */
  219. /*            `Forward' declarations              */
  220. /*                                    */
  221. /* **************************************************************** */
  222.  
  223. /* Non-zero means do not parse any lines other than comments and
  224.    parser directives. */
  225. unsigned char _rl_parsing_conditionalized_out = 0;
  226.  
  227. /* Non-zero means to save keys that we dispatch on in a kbd macro. */
  228. static int defining_kbd_macro = 0;
  229.  
  230. /* Non-zero means to convert characters with the meta bit set to
  231.    escape-prefixed characters so we can indirect through
  232.    emacs_meta_keymap or vi_escape_keymap. */
  233. int _rl_convert_meta_chars_to_ascii = 1;
  234.  
  235. /* Non-zero tells rl_delete_text and rl_insert_text to not add to
  236.    the undo list. */
  237. static int doing_an_undo = 0;
  238.  
  239. /* **************************************************************** */
  240. /*                                    */
  241. /*            Top Level Functions                */
  242. /*                                    */
  243. /* **************************************************************** */
  244.  
  245. /* Non-zero means treat 0200 bit in terminal input as Meta bit. */
  246. int _rl_meta_flag = 0;    /* Forward declaration */
  247.  
  248. /* Read a line of input.  Prompt with PROMPT.  A NULL PROMPT means
  249.    none.  A return value of NULL means that EOF was encountered. */
  250. char *
  251. readline (prompt)
  252.      char *prompt;
  253. {
  254.   char *readline_internal ();
  255.   char *value;
  256.  
  257.   rl_prompt = prompt;
  258.  
  259.   /* If we are at EOF return a NULL string. */
  260.   if (rl_pending_input == EOF)
  261.     {
  262.       rl_pending_input = 0;
  263.       return ((char *)NULL);
  264.     }
  265.  
  266.   rl_initialize ();
  267.   rl_prep_terminal (_rl_meta_flag);
  268.  
  269. #if defined (HANDLE_SIGNALS)
  270.   rl_set_signals ();
  271. #endif
  272.  
  273.   value = readline_internal ();
  274.   rl_deprep_terminal ();
  275.  
  276. #if defined (HANDLE_SIGNALS)
  277.   rl_clear_signals ();
  278. #endif
  279.  
  280.   return (value);
  281. }
  282.  
  283. /* Read a line of input from the global rl_instream, doing output on
  284.    the global rl_outstream.
  285.    If rl_prompt is non-null, then that is our prompt. */
  286. char *
  287. readline_internal ()
  288. {
  289.   int lastc, c, eof_found;
  290.  
  291.   in_stream  = rl_instream;
  292.   out_stream = rl_outstream;
  293.  
  294.   lastc = -1;
  295.   eof_found = 0;
  296.  
  297.   if (rl_startup_hook)
  298.     (*rl_startup_hook) ();
  299.  
  300.   if (!readline_echoing_p)
  301.     {
  302.       if (rl_prompt)
  303.     {
  304.       fprintf (out_stream, "%s", rl_prompt);
  305.       fflush (out_stream);
  306.     }
  307.     }
  308.   else
  309.     {
  310.       rl_on_new_line ();
  311.       rl_redisplay ();
  312. #if defined (VI_MODE)
  313.       if (rl_editing_mode == vi_mode)
  314.     rl_vi_insertion_mode ();
  315. #endif /* VI_MODE */
  316.     }
  317.  
  318.   while (!rl_done)
  319.     {
  320.       int lk = last_command_was_kill;
  321.       int code;
  322.  
  323.       code = setjmp (readline_top_level);
  324.  
  325.       if (code)
  326.     rl_redisplay ();
  327.  
  328.       if (!rl_pending_input)
  329.     {
  330.       /* Then initialize the argument and number of keys read. */
  331.       rl_init_argument ();
  332.       rl_key_sequence_length = 0;
  333.     }
  334.  
  335.       c = rl_read_key ();
  336.  
  337.       /* EOF typed to a non-blank line is a <NL>. */
  338.       if (c == EOF && rl_end)
  339.     c = NEWLINE;
  340.  
  341.       /* The character _rl_eof_char typed to blank line, and not as the
  342.      previous character is interpreted as EOF. */
  343.       if (((c == _rl_eof_char && lastc != c) || c == EOF) && !rl_end)
  344.     {
  345.       eof_found = 1;
  346.       break;
  347.     }
  348.  
  349.       lastc = c;
  350.       rl_dispatch (c, _rl_keymap);
  351.  
  352.       /* If there was no change in last_command_was_kill, then no kill
  353.      has taken place.  Note that if input is pending we are reading
  354.      a prefix command, so nothing has changed yet. */
  355.       if (!rl_pending_input)
  356.     {
  357.       if (lk == last_command_was_kill)
  358.         last_command_was_kill = 0;
  359.     }
  360.  
  361. #if defined (VI_MODE)
  362.       /* In vi mode, when you exit insert mode, the cursor moves back
  363.      over the previous character.  We explicitly check for that here. */
  364.       if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap)
  365.     rl_vi_check ();
  366. #endif /* VI_MODE */
  367.  
  368.       if (!rl_done)
  369.     rl_redisplay ();
  370.     }
  371.  
  372.   /* Restore the original of this history line, iff the line that we
  373.      are editing was originally in the history, AND the line has changed. */
  374.   {
  375.     HIST_ENTRY *entry = current_history ();
  376.  
  377.     if (entry && rl_undo_list)
  378.       {
  379.     char *temp = savestring (the_line);
  380.     rl_revert_line ();
  381.     entry = replace_history_entry (where_history (), the_line,
  382.                        (HIST_ENTRY *)NULL);
  383.     free_history_entry (entry);
  384.  
  385.     strcpy (the_line, temp);
  386.     free (temp);
  387.       }
  388.   }
  389.  
  390.   /* At any rate, it is highly likely that this line has an undo list.  Get
  391.      rid of it now. */
  392.   if (rl_undo_list)
  393.     free_undo_list ();
  394.  
  395.   if (eof_found)
  396.     return (char *)NULL;
  397.   else
  398.     return (savestring (the_line));
  399. }
  400.  
  401. /* **************************************************************** */
  402. /*                                    */
  403. /*            Character Input Buffering               */
  404. /*                                    */
  405. /* **************************************************************** */
  406.  
  407. static int pop_index = 0, push_index = 0, ibuffer_len = 511;
  408. static unsigned char ibuffer[512];
  409.  
  410. /* Non-null means it is a pointer to a function to run while waiting for
  411.    character input. */
  412. Function *rl_event_hook = (Function *)NULL;
  413.  
  414. #define any_typein (push_index != pop_index)
  415.  
  416. /* Add KEY to the buffer of characters to be read. */
  417. rl_stuff_char (key)
  418.      int key;
  419. {
  420.   if (key == EOF)
  421.     {
  422.       key = NEWLINE;
  423.       rl_pending_input = EOF;
  424.     }
  425.   ibuffer[push_index++] = key;
  426.   if (push_index >= ibuffer_len)
  427.     push_index = 0;
  428. }
  429.  
  430. /* Return the amount of space available in the
  431.    buffer for stuffing characters. */
  432. int
  433. ibuffer_space ()
  434. {
  435.   if (pop_index > push_index)
  436.     return (pop_index - push_index);
  437.   else
  438.     return (ibuffer_len - (push_index - pop_index));
  439. }
  440.  
  441. /* Get a key from the buffer of characters to be read.
  442.    Return the key in KEY.
  443.    Result is KEY if there was a key, or 0 if there wasn't. */
  444. int
  445. rl_get_char (key)
  446.      int *key;
  447. {
  448.   if (push_index == pop_index)
  449.     return (0);
  450.  
  451.   *key = ibuffer[pop_index++];
  452.  
  453.   if (pop_index >= ibuffer_len)
  454.     pop_index = 0;
  455.  
  456.   return (1);
  457. }
  458.  
  459. /* Stuff KEY into the *front* of the input buffer.
  460.    Returns non-zero if successful, zero if there is
  461.    no space left in the buffer. */
  462. int
  463. rl_unget_char (key)
  464.      int key;
  465. {
  466.   if (ibuffer_space ())
  467.     {
  468.       pop_index--;
  469.       if (pop_index < 0)
  470.     pop_index = ibuffer_len - 1;
  471.       ibuffer[pop_index] = key;
  472.       return (1);
  473.     }
  474.   return (0);
  475. }
  476.  
  477. /* If a character is available to be read, then read it
  478.    and stuff it into IBUFFER.  Otherwise, just return. */
  479. void
  480. rl_gather_tyi ()
  481. {
  482. #if defined (MINIMAL)
  483.   char input;
  484.  
  485.   if (isatty (0))
  486.     {
  487.       int i = rl_getc ();
  488.  
  489.       if (i != EOF)
  490.     rl_stuff_char (i);
  491.     }
  492.   else if (kbhit () && ibuffer_space ())
  493.     rl_stuff_char (getkey () & 0x7f);
  494. #else /* !MINIMAL */
  495.  
  496.   int tty = fileno (in_stream);
  497.   register int tem, result = -1;
  498.   int chars_avail;
  499.   char input;
  500.  
  501. #if defined (FIONREAD)
  502.   result = ioctl (tty, FIONREAD, &chars_avail);
  503. #endif
  504.  
  505. #if defined (O_NDELAY)
  506.   if (result == -1)
  507.     {
  508.       int flags;
  509.  
  510.       flags = fcntl (tty, F_GETFL, 0);
  511.  
  512.       fcntl (tty, F_SETFL, (flags | O_NDELAY));
  513.       chars_avail = read (tty, &input, 1);
  514.  
  515.       fcntl (tty, F_SETFL, flags);
  516.       if (chars_avail == -1 && errno == EAGAIN)
  517.     return;
  518.     }
  519. #endif /* O_NDELAY */
  520.  
  521.   /* If there's nothing available, don't waste time trying to read
  522.      something. */
  523.   if (chars_avail == 0)
  524.     return;
  525.  
  526.   tem = ibuffer_space ();
  527.  
  528.   if (chars_avail > tem)
  529.     chars_avail = tem;
  530.  
  531.   /* One cannot read all of the available input.  I can only read a single
  532.      character at a time, or else programs which require input can be
  533.      thwarted.  If the buffer is larger than one character, I lose.
  534.      Damn! */
  535.   if (tem < ibuffer_len)
  536.     chars_avail = 0;
  537.  
  538.   if (result != -1)
  539.     {
  540.       while (chars_avail--)
  541.     rl_stuff_char (rl_getc (in_stream));
  542.     }
  543.   else
  544.     {
  545.       if (chars_avail)
  546.     rl_stuff_char (input);
  547.     }
  548. #endif /* !MINIMAL */
  549. }
  550.  
  551. static int next_macro_key ();
  552. /* Read a key, including pending input. */
  553. int
  554. rl_read_key ()
  555. {
  556.   int c;
  557.  
  558.   rl_key_sequence_length++;
  559.  
  560.   if (rl_pending_input)
  561.     {
  562.       c = rl_pending_input;
  563.       rl_pending_input = 0;
  564.     }
  565.   else
  566.     {
  567.       /* If input is coming from a macro, then use that. */
  568.       if (c = next_macro_key ())
  569.     return (c);
  570.  
  571.       /* If the user has an event function, then call it periodically. */
  572.       if (rl_event_hook)
  573.     {
  574.       while (rl_event_hook && !rl_get_char (&c))
  575.         {
  576.           (*rl_event_hook) ();
  577.           rl_gather_tyi ();
  578.         }
  579.     }
  580.       else
  581.     {
  582.       if (!rl_get_char (&c))
  583.         c = rl_getc (in_stream);
  584.     }
  585.     }
  586.  
  587.   return (c);
  588. }
  589.  
  590. /* Found later in this file. */
  591. static void add_macro_char (), with_macro_input ();
  592.  
  593. /* Do the command associated with KEY in MAP.
  594.    If the associated command is really a keymap, then read
  595.    another key, and dispatch into that map. */
  596. void
  597. rl_dispatch (key, map)
  598.      register int key;
  599.      Keymap map;
  600. {
  601. #if defined (VI_MODE)
  602.   extern int _rl_vi_last_command, _rl_vi_last_repeat, _rl_vi_last_arg_sign;
  603. #endif
  604.  
  605.   if (defining_kbd_macro)
  606.     add_macro_char (key);
  607.  
  608.   if (META_CHAR (key) && _rl_convert_meta_chars_to_ascii)
  609.     {
  610.       if (map[ESC].type == ISKMAP)
  611.     {
  612. #if defined (CRAY)
  613.       map = (Keymap)((int)map[ESC].function);
  614. #else
  615.       map = (Keymap)map[ESC].function;
  616. #endif
  617.       key = UNMETA (key);
  618.       rl_key_sequence_length += 2;
  619.       rl_dispatch (key, map);
  620.     }
  621.       else
  622.     ding ();
  623.       return;
  624.     }
  625.  
  626.   switch (map[key].type)
  627.     {
  628.     case ISFUNC:
  629.       {
  630.     Function *func = map[key].function;
  631.  
  632.     if (func != (Function *)NULL)
  633.       {
  634.         /* Special case rl_do_lowercase_version (). */
  635.         if (func == rl_do_lowercase_version)
  636.           {
  637.         rl_dispatch (to_lower (key), map);
  638.         return;
  639.           }
  640.  
  641.         (*map[key].function)(rl_numeric_arg * rl_arg_sign, key);
  642.  
  643.         /* If we have input pending, then the last command was a prefix
  644.            command.  Don't change the state of rl_last_func.  Otherwise,
  645.            remember the last command executed in this variable. */
  646.         if (!rl_pending_input)
  647.           rl_last_func = map[key].function;
  648.       }
  649.     else
  650.       {
  651.         rl_abort ();
  652.         return;
  653.       }
  654.       }
  655.       break;
  656.  
  657.     case ISKMAP:
  658.       if (map[key].function != (Function *)NULL)
  659.     {
  660.       int newkey;
  661.  
  662.       rl_key_sequence_length++;
  663.       newkey = rl_read_key ();
  664. #if defined (CRAY)
  665.       /* If you cast map[key].function to type (Keymap) on a Cray,
  666.          the compiler takes the value of may[key].function and
  667.          divides it by 4 to convert between pointer types (pointers
  668.          to functions and pointers to structs are different sizes).
  669.          This is not what is wanted. */
  670.       rl_dispatch (newkey, (Keymap)((int)map[key].function));
  671. #else
  672.       rl_dispatch (newkey, (Keymap)map[key].function);
  673. #endif /* !CRAY */
  674.     }
  675.       else
  676.     {
  677.       rl_abort ();
  678.       return;
  679.     }
  680.       break;
  681.  
  682.     case ISMACR:
  683.       if (map[key].function != (Function *)NULL)
  684.     {
  685.       char *macro;
  686.  
  687.       macro = savestring ((char *)map[key].function);
  688.       with_macro_input (macro);
  689.       return;
  690.     }
  691.       break;
  692.     }
  693. #if defined (VI_MODE)
  694.   if (rl_editing_mode == vi_mode && _rl_keymap == vi_movement_keymap &&
  695.       rl_vi_textmod_command (key))
  696.     {
  697.       _rl_vi_last_command = key;
  698.       _rl_vi_last_repeat = rl_numeric_arg;
  699.       _rl_vi_last_arg_sign = rl_arg_sign;
  700.     }
  701. #endif
  702. }
  703.  
  704.  
  705. /* **************************************************************** */
  706. /*                                    */
  707. /*            Hacking Keyboard Macros             */
  708. /*                                    */
  709. /* **************************************************************** */
  710.  
  711. /* The currently executing macro string.  If this is non-zero,
  712.    then it is a malloc ()'ed string where input is coming from. */
  713. static char *executing_macro = (char *)NULL;
  714.  
  715. /* The offset in the above string to the next character to be read. */
  716. static int executing_macro_index = 0;
  717.  
  718. /* The current macro string being built.  Characters get stuffed
  719.    in here by add_macro_char (). */
  720. static char *current_macro = (char *)NULL;
  721.  
  722. /* The size of the buffer allocated to current_macro. */
  723. static int current_macro_size = 0;
  724.  
  725. /* The index at which characters are being added to current_macro. */
  726. static int current_macro_index = 0;
  727.  
  728. /* A structure used to save nested macro strings.
  729.    It is a linked list of string/index for each saved macro. */
  730. struct saved_macro {
  731.   struct saved_macro *next;
  732.   char *string;
  733.   int index;
  734. };
  735.  
  736. /* The list of saved macros. */
  737. struct saved_macro *macro_list = (struct saved_macro *)NULL;
  738.  
  739. /* Forward declarations of static functions.  Thank you C. */
  740. static void push_executing_macro (), pop_executing_macro ();
  741.  
  742. /* This one has to be declared earlier in the file. */
  743. /* static void add_macro_char (); */
  744.  
  745. /* Set up to read subsequent input from STRING.
  746.    STRING is free ()'ed when we are done with it. */
  747. static void
  748. with_macro_input (string)
  749.      char *string;
  750. {
  751.   push_executing_macro ();
  752.   executing_macro = string;
  753.   executing_macro_index = 0;
  754. }
  755.  
  756. /* Return the next character available from a macro, or 0 if
  757.    there are no macro characters. */
  758. static int
  759. next_macro_key ()
  760. {
  761.   if (!executing_macro)
  762.     return (0);
  763.  
  764.   if (!executing_macro[executing_macro_index])
  765.     {
  766.       pop_executing_macro ();
  767.       return (next_macro_key ());
  768.     }
  769.  
  770.   return (executing_macro[executing_macro_index++]);
  771. }
  772.  
  773. /* Save the currently executing macro on a stack of saved macros. */
  774. static void
  775. push_executing_macro ()
  776. {
  777.   struct saved_macro *saver;
  778.  
  779.   saver = (struct saved_macro *)xmalloc (sizeof (struct saved_macro));
  780.   saver->next = macro_list;
  781.   saver->index = executing_macro_index;
  782.   saver->string = executing_macro;
  783.  
  784.   macro_list = saver;
  785. }
  786.  
  787. /* Discard the current macro, replacing it with the one
  788.    on the top of the stack of saved macros. */
  789. static void
  790. pop_executing_macro ()
  791. {
  792.   if (executing_macro)
  793.     free (executing_macro);
  794.  
  795.   executing_macro = (char *)NULL;
  796.   executing_macro_index = 0;
  797.  
  798.   if (macro_list)
  799.     {
  800.       struct saved_macro *disposer = macro_list;
  801.       executing_macro = macro_list->string;
  802.       executing_macro_index = macro_list->index;
  803.       macro_list = macro_list->next;
  804.       free (disposer);
  805.     }
  806. }
  807.  
  808. /* Add a character to the macro being built. */
  809. static void
  810. add_macro_char (c)
  811.      int c;
  812. {
  813.   if (current_macro_index + 1 >= current_macro_size)
  814.     {
  815.       if (!current_macro)
  816.     current_macro = (char *)xmalloc (current_macro_size = 25);
  817.       else
  818.     current_macro =
  819.       (char *)xrealloc (current_macro, current_macro_size += 25);
  820.     }
  821.  
  822.   current_macro[current_macro_index++] = c;
  823.   current_macro[current_macro_index] = '\0';
  824. }
  825.  
  826. /* Begin defining a keyboard macro.
  827.    Keystrokes are recorded as they are executed.
  828.    End the definition with rl_end_kbd_macro ().
  829.    If a numeric argument was explicitly typed, then append this
  830.    definition to the end of the existing macro, and start by
  831.    re-executing the existing macro. */
  832. rl_start_kbd_macro (ignore1, ignore2)
  833.      int ignore1, ignore2;
  834. {
  835.   if (defining_kbd_macro)
  836.     rl_abort ();
  837.  
  838.   if (rl_explicit_arg)
  839.     {
  840.       if (current_macro)
  841.     with_macro_input (savestring (current_macro));
  842.     }
  843.   else
  844.     current_macro_index = 0;
  845.  
  846.   defining_kbd_macro = 1;
  847. }
  848.  
  849. /* Stop defining a keyboard macro.
  850.    A numeric argument says to execute the macro right now,
  851.    that many times, counting the definition as the first time. */
  852. rl_end_kbd_macro (count, ignore)
  853.      int count, ignore;
  854. {
  855.   if (!defining_kbd_macro)
  856.     rl_abort ();
  857.  
  858.   current_macro_index -= (rl_key_sequence_length - 1);
  859.   current_macro[current_macro_index] = '\0';
  860.  
  861.   defining_kbd_macro = 0;
  862.  
  863.   rl_call_last_kbd_macro (--count, 0);
  864. }
  865.  
  866. /* Execute the most recently defined keyboard macro.
  867.    COUNT says how many times to execute it. */
  868. rl_call_last_kbd_macro (count, ignore)
  869.      int count, ignore;
  870. {
  871.   if (!current_macro)
  872.     rl_abort ();
  873.  
  874.   if (defining_kbd_macro)
  875.     {
  876.       ding ();        /* no recursive macros */
  877.       current_macro[--current_macro_index] = '\0';    /* erase this char */
  878.       return 0;
  879.     }
  880.  
  881.   while (count--)
  882.     with_macro_input (savestring (current_macro));
  883. }
  884.  
  885. void
  886. _rl_kill_kbd_macro ()
  887. {
  888.   if (current_macro)
  889.     {
  890.       free (current_macro);
  891.       current_macro = (char *) NULL;
  892.     }
  893.   current_macro_size = current_macro_index = 0;
  894.  
  895.   if (executing_macro)
  896.     {
  897.       free (executing_macro);
  898.       executing_macro = (char *) NULL;
  899.     }
  900.   executing_macro_index = 0;
  901.  
  902.   defining_kbd_macro = 0;
  903. }
  904.  
  905.  
  906. /* **************************************************************** */
  907. /*                                    */
  908. /*            Initializations                 */
  909. /*                                    */
  910. /* **************************************************************** */
  911.  
  912. /* Initliaze readline (and terminal if not already). */
  913. rl_initialize ()
  914. {
  915.   /* If we have never been called before, initialize the
  916.      terminal and data structures. */
  917.   if (!rl_initialized)
  918.     {
  919.       readline_initialize_everything ();
  920.       rl_initialized++;
  921.     }
  922.  
  923.   /* Initalize the current line information. */
  924.   rl_point = rl_end = 0;
  925.   the_line = rl_line_buffer;
  926.   the_line[0] = 0;
  927.  
  928.   /* We aren't done yet.  We haven't even gotten started yet! */
  929.   rl_done = 0;
  930.  
  931.   /* Tell the history routines what is going on. */
  932.   start_using_history ();
  933.  
  934.   /* Make the display buffer match the state of the line. */
  935.   rl_reset_line_state ();
  936.  
  937.   /* No such function typed yet. */
  938.   rl_last_func = (Function *)NULL;
  939.  
  940.   /* Parsing of key-bindings begins in an enabled state. */
  941.   _rl_parsing_conditionalized_out = 0;
  942. }
  943.  
  944. /* Initialize the entire state of the world. */
  945. readline_initialize_everything ()
  946. {
  947.   /* Find out if we are running in Emacs. */
  948.   running_in_emacs = getenv ("EMACS");
  949.  
  950.   /* Set up input and output if they are not already set up. */
  951.   if (!rl_instream)
  952.     rl_instream = stdin;
  953.  
  954.   if (!rl_outstream)
  955.     rl_outstream = stdout;
  956.  
  957.   /* Bind in_stream and out_stream immediately.  These values may change,
  958.      but they may also be used before readline_internal () is called. */
  959.   in_stream = rl_instream;
  960.   out_stream = rl_outstream;
  961.  
  962.   /* Allocate data structures. */
  963.   if (!rl_line_buffer)
  964.     rl_line_buffer =
  965.       (char *)xmalloc (rl_line_buffer_len = DEFAULT_BUFFER_SIZE);
  966.  
  967.   /* Initialize the terminal interface. */
  968.   init_terminal_io ((char *)NULL);
  969.  
  970. #if !defined (MINIMAL)
  971.   /* Bind tty characters to readline functions. */
  972.   readline_default_bindings ();
  973. #endif /* !MINIMAL */
  974.  
  975.   /* Initialize the function names. */
  976.   rl_initialize_funmap ();
  977.  
  978.   /* Read in the init file. */
  979.   rl_read_init_file ((char *)NULL);
  980.  
  981.   /* If the completion parser's default word break characters haven't
  982.      been set yet, then do so now. */
  983.   {
  984.     if (rl_completer_word_break_characters == (char *)NULL)
  985.       rl_completer_word_break_characters = rl_basic_word_break_characters;
  986.   }
  987. }
  988.  
  989. /* If this system allows us to look at the values of the regular
  990.    input editing characters, then bind them to their readline
  991.    equivalents, iff the characters are not bound to keymaps. */
  992. #if !defined (MINIMAL)
  993. static void
  994. readline_default_bindings ()
  995. {
  996.   rltty_set_default_bindings (_rl_keymap);
  997. }
  998. #endif /* !MINIMAL */
  999.  
  1000.  
  1001. /* **************************************************************** */
  1002. /*                                    */
  1003. /*            Numeric Arguments                */
  1004. /*                                    */
  1005. /* **************************************************************** */
  1006.  
  1007. /* Handle C-u style numeric args, as well as M--, and M-digits. */
  1008.  
  1009. /* Add the current digit to the argument in progress. */
  1010. rl_digit_argument (ignore, key)
  1011.      int ignore, key;
  1012. {
  1013.   rl_pending_input = key;
  1014.   rl_digit_loop ();
  1015. }
  1016.  
  1017. /* What to do when you abort reading an argument. */
  1018. rl_discard_argument ()
  1019. {
  1020.   ding ();
  1021.   rl_clear_message ();
  1022.   rl_init_argument ();
  1023. }
  1024.  
  1025. /* Create a default argument. */
  1026. rl_init_argument ()
  1027. {
  1028.   rl_numeric_arg = rl_arg_sign = 1;
  1029.   rl_explicit_arg = 0;
  1030. }
  1031.  
  1032. /* C-u, universal argument.  Multiply the current argument by 4.
  1033.    Read a key.  If the key has nothing to do with arguments, then
  1034.    dispatch on it.  If the key is the abort character then abort. */
  1035. rl_universal_argument ()
  1036. {
  1037.   rl_numeric_arg *= 4;
  1038.   rl_digit_loop ();
  1039. }
  1040.  
  1041. rl_digit_loop ()
  1042. {
  1043.   int key, c;
  1044.   while (1)
  1045.     {
  1046.       rl_message ("(arg: %d) ", rl_arg_sign * rl_numeric_arg);
  1047.       key = c = rl_read_key ();
  1048.  
  1049.       if (_rl_keymap[c].type == ISFUNC &&
  1050.       _rl_keymap[c].function == rl_universal_argument)
  1051.     {
  1052.       rl_numeric_arg *= 4;
  1053.       continue;
  1054.     }
  1055.       c = UNMETA (c);
  1056.       if (numeric (c))
  1057.     {
  1058.       if (rl_explicit_arg)
  1059.         rl_numeric_arg = (rl_numeric_arg * 10) + (c - '0');
  1060.       else
  1061.         rl_numeric_arg = (c - '0');
  1062.       rl_explicit_arg = 1;
  1063.     }
  1064.       else
  1065.     {
  1066.       if (c == '-' && !rl_explicit_arg)
  1067.         {
  1068.           rl_numeric_arg = 1;
  1069.           rl_arg_sign = -1;
  1070.         }
  1071.       else
  1072.         {
  1073.           rl_clear_message ();
  1074.           rl_dispatch (key, _rl_keymap);
  1075.           return;
  1076.         }
  1077.     }
  1078.     }
  1079. }
  1080.  
  1081. /* **************************************************************** */
  1082. /*                                    */
  1083. /*            Terminal and Termcap                */
  1084. /*                                    */
  1085. /* **************************************************************** */
  1086.  
  1087. static char *term_buffer = (char *)NULL;
  1088. static char *term_string_buffer = (char *)NULL;
  1089.  
  1090. /* Non-zero means this terminal can't really do anything. */
  1091. int dumb_term = 0;
  1092. /* On Solaris2, sys/types.h #includes sys/reg.h, which #defines PC.
  1093.    Unfortunately, PC is a global variable used by the termcap library. */
  1094. #undef PC
  1095.  
  1096. #if !defined (__linux__)
  1097. char PC;
  1098. char *BC, *UP;
  1099. #endif /* __linux__ */
  1100.  
  1101. /* Some strings to control terminal actions.  These are output by tputs (). */
  1102. char *term_goto, *term_clreol, *term_cr, *term_clrpag, *term_backspace;
  1103.  
  1104. int screenwidth, screenheight;
  1105.  
  1106. /* Non-zero if we determine that the terminal can do character insertion. */
  1107. int terminal_can_insert = 0;
  1108.  
  1109. /* How to insert characters. */
  1110. char *term_im, *term_ei, *term_ic, *term_ip, *term_IC;
  1111.  
  1112. /* How to delete characters. */
  1113. char *term_dc, *term_DC;
  1114.  
  1115. #if defined (HACK_TERMCAP_MOTION)
  1116. char *term_forward_char;
  1117. #endif  /* HACK_TERMCAP_MOTION */
  1118.  
  1119. /* How to go up a line. */
  1120. char *term_up;
  1121.  
  1122. /* True if we have funny auto-line-wrap ("am" and "xn"). */
  1123. int term_xn;
  1124.  
  1125. /* A visible bell, if the terminal can be made to flash the screen. */
  1126. char *visible_bell;
  1127.  
  1128. /* Non-zero means that this terminal has a meta key. */
  1129. int term_has_meta;
  1130.  
  1131. /* The string to write to turn on the meta key, if this term has one. */
  1132. char *term_mm;
  1133.  
  1134. /* The string to write to turn off the meta key, if this term has one. */
  1135. char *term_mo;
  1136.  
  1137. /* The key sequences output by the arrow keys, if this terminal has any. */
  1138. char *term_ku, *term_kd, *term_kr, *term_kl;
  1139.  
  1140. /* Re-initialize the terminal considering that the TERM/TERMCAP variable
  1141.    has changed. */
  1142. rl_reset_terminal (terminal_name)
  1143.      char *terminal_name;
  1144. {
  1145.   init_terminal_io (terminal_name);
  1146. }
  1147.  
  1148. /* Set readline's idea of the screen size.  TTY is a file descriptor open
  1149.    to the terminal.  If IGNORE_ENV is true, we do not pay attention to the
  1150.    values of $LINES and $COLUMNS.  The tests for TERM_STRING_BUFFER being
  1151.    non-null serve to check whether or not we have initialized termcap. */
  1152. #if !defined (MINIMAL)
  1153. void
  1154. _rl_set_screen_size (tty, ignore_env)
  1155.      int tty, ignore_env;
  1156. {
  1157. #ifndef MINIMAL
  1158. #if defined (TIOCGWINSZ) && !defined (TIOCGWINSZ_BROKEN)
  1159.   struct winsize window_size;
  1160. #endif /* TIOCGWINSZ */
  1161.  
  1162. #if defined (TIOCGWINSZ) && !defined (TIOCGWINSZ_BROKEN)
  1163.   if (ioctl (tty, TIOCGWINSZ, &window_size) == 0)
  1164.     {
  1165.       screenwidth = (int) window_size.ws_col;
  1166.       screenheight = (int) window_size.ws_row;
  1167.     }
  1168. #endif /* TIOCGWINSZ */
  1169.  
  1170.   /* Environment variable COLUMNS overrides setting of "co" if IGNORE_ENV
  1171.      is unset. */
  1172.   if (screenwidth <= 0)
  1173.     {
  1174.       char *sw;
  1175.  
  1176.       if (!ignore_env && (sw = getenv ("COLUMNS")))
  1177.     screenwidth = atoi (sw);
  1178.  
  1179.       if (screenwidth <= 0 && term_string_buffer)
  1180.     screenwidth = tgetnum ("co");
  1181.     }
  1182.  
  1183.   /* Environment variable LINES overrides setting of "li" if IGNORE_ENV
  1184.      is unset. */
  1185.   if (screenheight <= 0)
  1186.     {
  1187.       char *sh;
  1188.  
  1189.       if (!ignore_env && (sh = getenv ("LINES")))
  1190.     screenheight = atoi (sh);
  1191.  
  1192.       if (screenheight <= 0 && term_string_buffer)
  1193.     screenheight = tgetnum ("li");
  1194.     }
  1195.  
  1196.   /* If all else fails, default to 80x24 terminal. */
  1197.   if (screenwidth <= 0)
  1198.     screenwidth = 80;
  1199.  
  1200.   if (screenheight <= 0)
  1201.     screenheight = 24;
  1202.  
  1203. #if defined (SHELL)
  1204.   /* If we're being compiled as part of bash, set the environment
  1205.      variables $LINES and $COLUMNS to new values. */
  1206.   set_lines_and_columns (screenheight, screenwidth);
  1207. #endif
  1208.  
  1209.   /* If we don't have xn (most modern terminals do),
  1210.      don't use the last column. */
  1211.   if (!term_xn)
  1212.     screenwidth--;
  1213. #endif
  1214. }
  1215. #endif /* !MINIMAL */
  1216.  
  1217. init_terminal_io (terminal_name)
  1218.      char *terminal_name;
  1219. {
  1220. #if defined (MINIMAL)
  1221.   screenwidth = ScreenCols ();
  1222.   screenheight = ScreenRows ();
  1223.   term_cr = "\r";
  1224.   term_im = term_ei = term_ic = term_IC = (char *)NULL;
  1225.   term_up = term_dc = term_DC = visible_bell = (char *)NULL;
  1226.  
  1227.   /* Does the MINIMAL have a meta key?  I don't know. */
  1228.   term_has_meta = 0;
  1229.   term_mm = term_mo = (char *)NULL;
  1230.  
  1231.   /* It probably has arrow keys, but I don't know what they are. */
  1232.   term_ku = term_kd = term_kr = term_kl = (char *)NULL;
  1233.  
  1234. #if defined (HACK_TERMCAP_MOTION)
  1235.   term_forward_char = (char *)NULL;
  1236. #endif /* HACK_TERMCAP_MOTION */
  1237.   terminal_can_insert = term_xn = 0;
  1238.   return;
  1239. #else /* !MINIMAL */
  1240.  
  1241.   char *term, *buffer;
  1242.   int tty;
  1243.  
  1244.   term = terminal_name ? terminal_name : getenv ("TERM");
  1245.  
  1246.   if (!term_string_buffer)
  1247.     term_string_buffer = (char *)xmalloc (2048);
  1248.  
  1249.   if (!term_buffer)
  1250.     term_buffer = (char *)xmalloc (2048);
  1251.  
  1252.   buffer = term_string_buffer;
  1253.  
  1254.   term_clrpag = term_cr = term_clreol = (char *)NULL;
  1255.  
  1256.   if (!term)
  1257.     term = "dumb";
  1258.  
  1259.   if (tgetent (term_buffer, term) <= 0)
  1260.     {
  1261.       dumb_term = 1;
  1262.       screenwidth = 79;
  1263.       screenheight = 24;
  1264.       term_cr = "\r";
  1265.       term_im = term_ei = term_ic = term_IC = (char *)NULL;
  1266.       term_up = term_dc = term_DC = visible_bell = (char *)NULL;
  1267.       term_ku = term_kd = term_kl = term_kr = (char *)NULL;
  1268. #if defined (HACK_TERMCAP_MOTION)
  1269.       term_forward_char = (char *)NULL;
  1270. #endif
  1271.       terminal_can_insert = term_xn = 0;
  1272.       return;
  1273.     }
  1274.  
  1275.   BC = tgetstr ("pc", &buffer);
  1276.   PC = buffer ? *buffer : 0;
  1277.  
  1278.   term_backspace = tgetstr ("le", &buffer);
  1279.  
  1280.   term_cr = tgetstr ("cr", &buffer);
  1281.   term_clreol = tgetstr ("ce", &buffer);
  1282.   term_clrpag = tgetstr ("cl", &buffer);
  1283.  
  1284.   if (!term_cr)
  1285.     term_cr =  "\r";
  1286.  
  1287. #if defined (HACK_TERMCAP_MOTION)
  1288.   term_forward_char = tgetstr ("nd", &buffer);
  1289. #endif  /* HACK_TERMCAP_MOTION */
  1290.  
  1291.   if (rl_instream)
  1292.     tty = fileno (rl_instream);
  1293.   else
  1294.     tty = 0;
  1295.  
  1296.   screenwidth = screenheight = 0;
  1297.  
  1298.   term_xn = tgetflag ("am") && tgetflag ("xn");
  1299.  
  1300.   _rl_set_screen_size (tty, 0);
  1301.  
  1302.   term_im = tgetstr ("im", &buffer);
  1303.   term_ei = tgetstr ("ei", &buffer);
  1304.   term_IC = tgetstr ("IC", &buffer);
  1305.   term_ic = tgetstr ("ic", &buffer);
  1306.  
  1307.   /* "An application program can assume that the terminal can do
  1308.       character insertion if *any one of* the capabilities `IC',
  1309.       `im', `ic' or `ip' is provided."  But we can't do anything if
  1310.       only `ip' is provided, so... */
  1311.   terminal_can_insert = (term_IC || term_im || term_ic);
  1312.  
  1313.   term_up = tgetstr ("up", &buffer);
  1314.   term_dc = tgetstr ("dc", &buffer);
  1315.   term_DC = tgetstr ("DC", &buffer);
  1316.  
  1317.   visible_bell = tgetstr ("vb", &buffer);
  1318.  
  1319.   /* Check to see if this terminal has a meta key. */
  1320.   term_has_meta = (tgetflag ("km") || tgetflag ("MT"));
  1321.   if (term_has_meta)
  1322.     {
  1323.       term_mm = tgetstr ("mm", &buffer);
  1324.       term_mo = tgetstr ("mo", &buffer);
  1325.     }
  1326.   else
  1327.     {
  1328.       term_mm = (char *)NULL;
  1329.       term_mo = (char *)NULL;
  1330.     }
  1331.  
  1332.   /* Attempt to find and bind the arrow keys.  Do not override already
  1333.      bound keys in an overzealous attempt, however. */
  1334.   term_ku = tgetstr ("ku", &buffer);
  1335.   term_kd = tgetstr ("kd", &buffer);
  1336.   term_kr = tgetstr ("kr", &buffer);
  1337.   term_kl = tgetstr ("kl", &buffer);
  1338.  
  1339.   if (term_ku)
  1340.     {
  1341.       Function *func;
  1342.  
  1343.       func = rl_function_of_keyseq (term_ku, _rl_keymap, (int *)NULL);
  1344.  
  1345.       if (!func || func == rl_do_lowercase_version)
  1346.     rl_set_key (term_ku, rl_get_previous_history, _rl_keymap);
  1347.     }
  1348.  
  1349.   if (term_kd)
  1350.     {
  1351.       Function *func;
  1352.  
  1353.       func = rl_function_of_keyseq (term_kd, _rl_keymap, (int *)NULL);
  1354.  
  1355.       if (!func || func == rl_do_lowercase_version)
  1356.     rl_set_key (term_kd, rl_get_next_history, _rl_keymap);
  1357.     }
  1358.  
  1359.   if (term_kr)
  1360.     {
  1361.       Function *func;
  1362.  
  1363.       func = rl_function_of_keyseq (term_kr, _rl_keymap, (int *)NULL);
  1364.  
  1365.       if (!func || func == rl_do_lowercase_version)
  1366.     rl_set_key (term_kr, rl_forward, _rl_keymap);
  1367.     }
  1368.  
  1369.   if (term_kl)
  1370.     {
  1371.       Function *func;
  1372.  
  1373.       func = rl_function_of_keyseq (term_kl, _rl_keymap, (int *)NULL);
  1374.  
  1375.       if (!func || func == rl_do_lowercase_version)
  1376.     rl_set_key (term_kl, rl_backward, _rl_keymap);
  1377.     }
  1378. #endif /* !MINIMAL */
  1379.   return 0;
  1380. }
  1381.  
  1382. /* A function for the use of tputs () */
  1383. int
  1384. _rl_output_character_function (c)
  1385.      int c;
  1386. {
  1387.   return putc (c, out_stream);
  1388. }
  1389.  
  1390. /* Write COUNT characters from STRING to the output stream. */
  1391. void
  1392. _rl_output_some_chars (string, count)
  1393.      char *string;
  1394.      int count;
  1395. {
  1396.   fwrite (string, 1, count, out_stream);
  1397. }
  1398.  
  1399. /* Move the cursor back. */
  1400. backspace (count)
  1401.      int count;
  1402. {
  1403.   register int i;
  1404.  
  1405. #if !defined (MINIMAL)
  1406.   if (term_backspace)
  1407.     for (i = 0; i < count; i++)
  1408.       tputs (term_backspace, 1, _rl_output_character_function);
  1409.   else
  1410. #endif /* !MINIMAL */
  1411.     for (i = 0; i < count; i++)
  1412.       putc ('\b', out_stream);
  1413. }
  1414.  
  1415. /* Move to the start of the next line. */
  1416. crlf ()
  1417. {
  1418. #if defined (NEW_TTY_DRIVER)
  1419.   tputs (term_cr, 1, _rl_output_character_function);
  1420. #endif /* NEW_TTY_DRIVER */
  1421.   putc ('\n', out_stream);
  1422. }
  1423.  
  1424.  
  1425. /* **************************************************************** */
  1426. /*                                    */
  1427. /*            Utility Functions                */
  1428. /*                                    */
  1429. /* **************************************************************** */
  1430.  
  1431. /* Return 0 if C is not a member of the class of characters that belong
  1432.    in words, or 1 if it is. */
  1433.  
  1434. int allow_pathname_alphabetic_chars = 0;
  1435. char *pathname_alphabetic_chars = "/-_=~.#$";
  1436.  
  1437. int
  1438. alphabetic (c)
  1439.      int c;
  1440. {
  1441.   if (pure_alphabetic (c) || (numeric (c)))
  1442.     return (1);
  1443.  
  1444.   if (allow_pathname_alphabetic_chars)
  1445.     return (strchr (pathname_alphabetic_chars, c) != NULL);
  1446.   else
  1447.     return (0);
  1448. }
  1449.  
  1450. /* Return non-zero if C is a numeric character. */
  1451. int
  1452. numeric (c)
  1453.      int c;
  1454. {
  1455.   return (c >= '0' && c <= '9');
  1456. }
  1457.  
  1458. /* Ring the terminal bell. */
  1459. int
  1460. ding ()
  1461. {
  1462.   if (readline_echoing_p)
  1463.     {
  1464. #if !defined (MINIMAL)
  1465.       if (_rl_prefer_visible_bell && visible_bell)
  1466.     tputs (visible_bell, 1, _rl_output_character_function);
  1467.       else
  1468. #endif /* !MINIMAL */
  1469.     {
  1470.       fprintf (stderr, "\007");
  1471.       fflush (stderr);
  1472.     }
  1473.     }
  1474.   return (-1);
  1475. }
  1476.  
  1477. /* How to abort things. */
  1478. rl_abort ()
  1479. {
  1480.   ding ();
  1481.   rl_clear_message ();
  1482.   rl_init_argument ();
  1483.   rl_pending_input = 0;
  1484.  
  1485.   defining_kbd_macro = 0;
  1486.   while (executing_macro)
  1487.     pop_executing_macro ();
  1488.  
  1489.   rl_last_func = (Function *)NULL;
  1490.   longjmp (readline_top_level, 1);
  1491. }
  1492.  
  1493. /* Return a copy of the string between FROM and TO.
  1494.    FROM is inclusive, TO is not. */
  1495. char *
  1496. rl_copy_text (from, to)
  1497.      int from, to;
  1498. {
  1499.   register int length;
  1500.   char *copy;
  1501.  
  1502.   /* Fix it if the caller is confused. */
  1503.   if (from > to)
  1504.     {
  1505.       int t = from;
  1506.       from = to;
  1507.       to = t;
  1508.     }
  1509.  
  1510.   length = to - from;
  1511.   copy = (char *)xmalloc (1 + length);
  1512.   strncpy (copy, the_line + from, length);
  1513.   copy[length] = '\0';
  1514.   return (copy);
  1515. }
  1516.  
  1517. /* Increase the size of RL_LINE_BUFFER until it has enough space to hold
  1518.    LEN characters. */
  1519. void
  1520. rl_extend_line_buffer (len)
  1521.      int len;
  1522. {
  1523.   while (len >= rl_line_buffer_len)
  1524.     rl_line_buffer =
  1525.       (char *)xrealloc
  1526.     (rl_line_buffer, rl_line_buffer_len += DEFAULT_BUFFER_SIZE);
  1527.  
  1528.   the_line = rl_line_buffer;
  1529. }
  1530.  
  1531.  
  1532. /* **************************************************************** */
  1533. /*                                    */
  1534. /*            Insert and Delete                */
  1535. /*                                    */
  1536. /* **************************************************************** */
  1537.  
  1538. /* Insert a string of text into the line at point.  This is the only
  1539.    way that you should do insertion.  rl_insert () calls this
  1540.    function. */
  1541. rl_insert_text (string)
  1542.      char *string;
  1543. {
  1544.   register int i, l = strlen (string);
  1545.  
  1546.   if (rl_end + l >= rl_line_buffer_len)
  1547.     rl_extend_line_buffer (rl_end + l);
  1548.  
  1549.   for (i = rl_end; i >= rl_point; i--)
  1550.     the_line[i + l] = the_line[i];
  1551.   strncpy (the_line + rl_point, string, l);
  1552.  
  1553.   /* Remember how to undo this if we aren't undoing something. */
  1554.   if (!doing_an_undo)
  1555.     {
  1556.       /* If possible and desirable, concatenate the undos. */
  1557.       if ((strlen (string) == 1) &&
  1558.       rl_undo_list &&
  1559.       (rl_undo_list->what == UNDO_INSERT) &&
  1560.       (rl_undo_list->end == rl_point) &&
  1561.       (rl_undo_list->end - rl_undo_list->start < 20))
  1562.     rl_undo_list->end++;
  1563.       else
  1564.     rl_add_undo (UNDO_INSERT, rl_point, rl_point + l, (char *)NULL);
  1565.     }
  1566.   rl_point += l;
  1567.   rl_end += l;
  1568.   the_line[rl_end] = '\0';
  1569. }
  1570.  
  1571. /* Delete the string between FROM and TO.  FROM is
  1572.    inclusive, TO is not. */
  1573. rl_delete_text (from, to)
  1574.      int from, to;
  1575. {
  1576.   register char *text;
  1577.  
  1578.   /* Fix it if the caller is confused. */
  1579.   if (from > to)
  1580.     {
  1581.       int t = from;
  1582.       from = to;
  1583.       to = t;
  1584.     }
  1585.   text = rl_copy_text (from, to);
  1586.   strncpy (the_line + from, the_line + to, rl_end - to);
  1587.  
  1588.   /* Remember how to undo this delete. */
  1589.   if (!doing_an_undo)
  1590.     rl_add_undo (UNDO_DELETE, from, to, text);
  1591.   else
  1592.     free (text);
  1593.  
  1594.   rl_end -= (to - from);
  1595.   the_line[rl_end] = '\0';
  1596. }
  1597.  
  1598.  
  1599. /* **************************************************************** */
  1600. /*                                    */
  1601. /*            Readline character functions            */
  1602. /*                                    */
  1603. /* **************************************************************** */
  1604.  
  1605. /* This is not a gap editor, just a stupid line input routine.  No hair
  1606.    is involved in writing any of the functions, and none should be. */
  1607.  
  1608. /* Note that:
  1609.  
  1610.    rl_end is the place in the string that we would place '\0';
  1611.    i.e., it is always safe to place '\0' there.
  1612.  
  1613.    rl_point is the place in the string where the cursor is.  Sometimes
  1614.    this is the same as rl_end.
  1615.  
  1616.    Any command that is called interactively receives two arguments.
  1617.    The first is a count: the numeric arg pased to this command.
  1618.    The second is the key which invoked this command.
  1619. */
  1620.  
  1621.  
  1622. /* **************************************************************** */
  1623. /*                                    */
  1624. /*            Movement Commands                */
  1625. /*                                    */
  1626. /* **************************************************************** */
  1627.  
  1628. /* Note that if you `optimize' the display for these functions, you cannot
  1629.    use said functions in other functions which do not do optimizing display.
  1630.    I.e., you will have to update the data base for rl_redisplay, and you
  1631.    might as well let rl_redisplay do that job. */
  1632.  
  1633. /* Move forward COUNT characters. */
  1634. rl_forward (count)
  1635.      int count;
  1636. {
  1637.   if (count < 0)
  1638.     rl_backward (-count);
  1639.   else
  1640.     while (count)
  1641.       {
  1642. #if defined (VI_MODE)
  1643.     if (rl_point >= (rl_end - (rl_editing_mode == vi_mode)))
  1644. #else
  1645.     if (rl_point == rl_end)
  1646. #endif /* VI_MODE */
  1647.       {
  1648.         ding ();
  1649.         return 0;
  1650.       }
  1651.     else
  1652.       rl_point++;
  1653.     --count;
  1654.       }
  1655.   return 0;
  1656. }
  1657.  
  1658. /* Move backward COUNT characters. */
  1659. rl_backward (count)
  1660.      int count;
  1661. {
  1662.   if (count < 0)
  1663.     rl_forward (-count);
  1664.   else
  1665.     while (count)
  1666.       {
  1667.     if (!rl_point)
  1668.       {
  1669.         ding ();
  1670.         return 0;
  1671.       }
  1672.     else
  1673.       --rl_point;
  1674.     --count;
  1675.       }
  1676.   return 0;
  1677. }
  1678.  
  1679. /* Move to the beginning of the line. */
  1680. rl_beg_of_line ()
  1681. {
  1682.   rl_point = 0;
  1683.   return 0;
  1684. }
  1685.  
  1686. /* Move to the end of the line. */
  1687. rl_end_of_line ()
  1688. {
  1689.   rl_point = rl_end;
  1690.   return 0;
  1691. }
  1692.  
  1693. /* Move forward a word.  We do what Emacs does. */
  1694. rl_forward_word (count)
  1695.      int count;
  1696. {
  1697.   int c;
  1698.  
  1699.   if (count < 0)
  1700.     {
  1701.       rl_backward_word (-count);
  1702.       return 0;
  1703.     }
  1704.  
  1705.   while (count)
  1706.     {
  1707.       if (rl_point == rl_end)
  1708.     return 0;
  1709.  
  1710.       /* If we are not in a word, move forward until we are in one.
  1711.      Then, move forward until we hit a non-alphabetic character. */
  1712.       c = the_line[rl_point];
  1713.       if (!alphabetic (c))
  1714.     {
  1715.       while (++rl_point < rl_end)
  1716.         {
  1717.           c = the_line[rl_point];
  1718.           if (alphabetic (c)) break;
  1719.         }
  1720.     }
  1721.       if (rl_point == rl_end) return;
  1722.       while (++rl_point < rl_end)
  1723.     {
  1724.       c = the_line[rl_point];
  1725.       if (!alphabetic (c)) break;
  1726.     }
  1727.       --count;
  1728.     }
  1729.   return 0;
  1730. }
  1731.  
  1732. /* Move backward a word.  We do what Emacs does. */
  1733. rl_backward_word (count)
  1734.      int count;
  1735. {
  1736.   int c;
  1737.  
  1738.   if (count < 0)
  1739.     {
  1740.       rl_forward_word (-count);
  1741.       return 0;
  1742.     }
  1743.  
  1744.   while (count)
  1745.     {
  1746.       if (!rl_point)
  1747.     return 0;
  1748.  
  1749.       /* Like rl_forward_word (), except that we look at the characters
  1750.      just before point. */
  1751.  
  1752.       c = the_line[rl_point - 1];
  1753.       if (!alphabetic (c))
  1754.     {
  1755.       while (--rl_point)
  1756.         {
  1757.           c = the_line[rl_point - 1];
  1758.           if (alphabetic (c)) break;
  1759.         }
  1760.     }
  1761.  
  1762.       while (rl_point)
  1763.     {
  1764.       c = the_line[rl_point - 1];
  1765.       if (!alphabetic (c))
  1766.         break;
  1767.       else --rl_point;
  1768.     }
  1769.       --count;
  1770.     }
  1771.   return 0;
  1772. }
  1773.  
  1774. /* Clear the current line.  Numeric argument to C-l does this. */
  1775. rl_refresh_line ()
  1776. {
  1777.   int curr_line = _rl_last_c_pos / screenwidth;
  1778.  
  1779.   _rl_move_vert (curr_line);
  1780.   _rl_move_cursor_relative (0, the_line);   /* XXX is this right */
  1781.  
  1782. #if defined (WIN32)
  1783.   abort();
  1784. #else
  1785. #if defined (__GO32__)
  1786.   {
  1787.     int row, col, width, row_start;
  1788.  
  1789.     ScreenGetCursor (&row, &col);
  1790.     width = ScreenCols ();
  1791.     row_start = ScreenPrimary + (row * width);
  1792.     memset (row_start + col, 0, (width - col) * 2);
  1793.   }
  1794. #else /* !MINIMAL */
  1795.   if (term_clreol)
  1796.     tputs (term_clreol, 1, _rl_output_character_function);
  1797. #endif /* !MINIMAL */
  1798. #endif
  1799.   rl_forced_update_display ();
  1800.   rl_display_fixed = 1;
  1801.  
  1802.   return 0;
  1803. }
  1804.  
  1805. /* C-l typed to a line without quoting clears the screen, and then reprints
  1806.    the prompt and the current input line.  Given a numeric arg, redraw only
  1807.    the current line. */
  1808. rl_clear_screen ()
  1809. {
  1810.   if (rl_explicit_arg)
  1811.     {
  1812.       rl_refresh_line ();
  1813.       return 0;
  1814.     }
  1815.  
  1816. #if !defined (MINIMAL)
  1817.   if (term_clrpag)
  1818.     tputs (term_clrpag, 1, _rl_output_character_function);
  1819.   else
  1820. #endif /* !MINIMAL */
  1821.     crlf ();
  1822.  
  1823.   rl_forced_update_display ();
  1824.   rl_display_fixed = 1;
  1825.  
  1826.   return 0;
  1827. }
  1828.  
  1829. rl_arrow_keys (count, c)
  1830.      int count, c;
  1831. {
  1832.   int ch;
  1833.  
  1834.   ch = rl_read_key ();
  1835.  
  1836.   switch (to_upper (ch))
  1837.     {
  1838.     case 'A':
  1839.       rl_get_previous_history (count);
  1840.       break;
  1841.  
  1842.     case 'B':
  1843.       rl_get_next_history (count);
  1844.       break;
  1845.  
  1846.     case 'C':
  1847.       rl_forward (count);
  1848.       break;
  1849.  
  1850.     case 'D':
  1851.       rl_backward (count);
  1852.       break;
  1853.  
  1854.     default:
  1855.       ding ();
  1856.     }
  1857.   return 0;
  1858. }
  1859.  
  1860.  
  1861. /* **************************************************************** */
  1862. /*                                    */
  1863. /*            Text commands                    */
  1864. /*                                    */
  1865. /* **************************************************************** */
  1866.  
  1867. /* Insert the character C at the current location, moving point forward. */
  1868. rl_insert (count, c)
  1869.      int count, c;
  1870. {
  1871.   register int i;
  1872.   char *string;
  1873.  
  1874.   if (count <= 0)
  1875.     return 0;
  1876.  
  1877.   /* If we can optimize, then do it.  But don't let people crash
  1878.      readline because of extra large arguments. */
  1879.   if (count > 1 && count < 1024)
  1880.     {
  1881.       string = (char *)alloca (1 + count);
  1882.  
  1883.       for (i = 0; i < count; i++)
  1884.     string[i] = c;
  1885.  
  1886.       string[i] = '\0';
  1887.       rl_insert_text (string);
  1888.       return 0;
  1889.     }
  1890.  
  1891.   if (count > 1024)
  1892.     {
  1893.       int decreaser;
  1894.  
  1895.       string = (char *)alloca (1024 + 1);
  1896.  
  1897.       for (i = 0; i < 1024; i++)
  1898.     string[i] = c;
  1899.  
  1900.       while (count)
  1901.     {
  1902.       decreaser = (count > 1024 ? 1024 : count);
  1903.       string[decreaser] = '\0';
  1904.       rl_insert_text (string);
  1905.       count -= decreaser;
  1906.     }
  1907.       return 0;
  1908.     }
  1909.  
  1910.   /* We are inserting a single character.
  1911.      If there is pending input, then make a string of all of the
  1912.      pending characters that are bound to rl_insert, and insert
  1913.      them all. */
  1914.   if (any_typein)
  1915.     {
  1916.       int key = 0, t;
  1917.  
  1918.       i = 0;
  1919.       string = (char *)alloca (ibuffer_len + 1);
  1920.       string[i++] = c;
  1921.  
  1922.       while ((t = rl_get_char (&key)) &&
  1923.          (_rl_keymap[key].type == ISFUNC &&
  1924.           _rl_keymap[key].function == rl_insert))
  1925.     string[i++] = key;
  1926.  
  1927.       if (t)
  1928.     rl_unget_char (key);
  1929.  
  1930.       string[i] = '\0';
  1931.       rl_insert_text (string);
  1932.     }
  1933.   else
  1934.     {
  1935.       /* Inserting a single character. */
  1936.       string = (char *)alloca (2);
  1937.  
  1938.       string[1] = '\0';
  1939.       string[0] = c;
  1940.       rl_insert_text (string);
  1941.     }
  1942.   return 0;
  1943. }
  1944.  
  1945. /* Insert the next typed character verbatim. */
  1946. rl_quoted_insert (count)
  1947.      int count;
  1948. {
  1949.   int c;
  1950.  
  1951.   c = rl_read_key ();
  1952.   return (rl_insert (count, c));
  1953.   
  1954. }
  1955.  
  1956. /* Insert a tab character. */
  1957. rl_tab_insert (count)
  1958.      int count;
  1959. {
  1960.   return (rl_insert (count, '\t'));
  1961. }
  1962.  
  1963. /* What to do when a NEWLINE is pressed.  We accept the whole line.
  1964.    KEY is the key that invoked this command.  I guess it could have
  1965.    meaning in the future. */
  1966. rl_newline (count, key)
  1967.      int count, key;
  1968. {
  1969.   rl_done = 1;
  1970.  
  1971. #if defined (VI_MODE)
  1972.   {
  1973.     extern int _rl_vi_doing_insert;
  1974.     if (_rl_vi_doing_insert)
  1975.       {
  1976.     rl_end_undo_group ();
  1977.     _rl_vi_doing_insert = 0;
  1978.       }
  1979.   }
  1980.   rl_vi_set_last ();
  1981.  
  1982. #endif /* VI_MODE */
  1983.  
  1984.   if (readline_echoing_p)
  1985.     {
  1986.       _rl_move_vert (_rl_vis_botlin);
  1987.       _rl_vis_botlin = 0;
  1988.       crlf ();
  1989.       fflush (out_stream);
  1990.       rl_display_fixed++;
  1991.     }
  1992.   return 0;
  1993. }
  1994.  
  1995. rl_clean_up_for_exit ()
  1996. {
  1997.   if (readline_echoing_p)
  1998.     {
  1999.       _rl_move_vert (_rl_vis_botlin);
  2000.       _rl_vis_botlin = 0;
  2001.       fflush (out_stream);
  2002.       rl_restart_output ();
  2003.     }
  2004.   return 0;
  2005. }
  2006.  
  2007. /* What to do for some uppercase characters, like meta characters,
  2008.    and some characters appearing in emacs_ctlx_keymap.  This function
  2009.    is just a stub, you bind keys to it and the code in rl_dispatch ()
  2010.    is special cased. */
  2011. rl_do_lowercase_version (ignore1, ignore2)
  2012.      int ignore1, ignore2;
  2013. {
  2014.   return 0;
  2015. }
  2016.  
  2017. /* Rubout the character behind point. */
  2018. rl_rubout (count)
  2019.      int count;
  2020. {
  2021.   if (count < 0)
  2022.     {
  2023.       rl_delete (-count);
  2024.       return 0;
  2025.     }
  2026.  
  2027.   if (!rl_point)
  2028.     {
  2029.       ding ();
  2030.       return -1;
  2031.     }
  2032.  
  2033.   if (count > 1 || rl_explicit_arg)
  2034.     {
  2035.       int orig_point = rl_point;
  2036.       rl_backward (count);
  2037.       rl_kill_text (orig_point, rl_point);
  2038.     }
  2039.   else
  2040.     {
  2041.       int c = the_line[--rl_point];
  2042.       rl_delete_text (rl_point, rl_point + 1);
  2043.  
  2044.       if (rl_point == rl_end && isprint (c) && _rl_last_c_pos)
  2045.     {
  2046.       int l;
  2047.       l = rl_character_len (c, rl_point);
  2048.       _rl_erase_at_end_of_line (l);
  2049.     }
  2050.     }
  2051.   return 0;
  2052. }
  2053.  
  2054. /* Delete the character under the cursor.  Given a numeric argument,
  2055.    kill that many characters instead. */
  2056. rl_delete (count, invoking_key)
  2057.      int count, invoking_key;
  2058. {
  2059.   if (count < 0)
  2060.     {
  2061.       return (rl_rubout (-count));
  2062.     }
  2063.  
  2064.   if (rl_point == rl_end)
  2065.     {
  2066.       ding ();
  2067.       return -1;
  2068.     }
  2069.  
  2070.   if (count > 1 || rl_explicit_arg)
  2071.     {
  2072.       int orig_point = rl_point;
  2073.       rl_forward (count);
  2074.       rl_kill_text (orig_point, rl_point);
  2075.       rl_point = orig_point;
  2076.       return 0;
  2077.     }
  2078.   else
  2079.     return (rl_delete_text (rl_point, rl_point + 1));
  2080.   
  2081. }
  2082.  
  2083. /* Delete all spaces and tabs around point. */
  2084. rl_delete_horizontal_space (count, ignore)
  2085.      int count, ignore;
  2086. {
  2087.   int start = rl_point;
  2088.  
  2089.   while (rl_point && whitespace (the_line[rl_point - 1]))
  2090.     rl_point--;
  2091.  
  2092.   start = rl_point;
  2093.  
  2094.   while (rl_point < rl_end && whitespace (the_line[rl_point]))
  2095.     rl_point++;
  2096.  
  2097.   if (start != rl_point)
  2098.     {
  2099.       rl_delete_text (start, rl_point);
  2100.       rl_point = start;
  2101.     }
  2102.   return 0;
  2103. }
  2104.  
  2105.  
  2106. /* **************************************************************** */
  2107. /*                                    */
  2108. /*            Kill commands                    */
  2109. /*                                    */
  2110. /* **************************************************************** */
  2111.  
  2112. /* The next two functions mimic unix line editing behaviour, except they
  2113.    save the deleted text on the kill ring.  This is safer than not saving
  2114.    it, and since we have a ring, nobody should get screwed. */
  2115.  
  2116. /* This does what C-w does in Unix.  We can't prevent people from
  2117.    using behaviour that they expect. */
  2118. rl_unix_word_rubout ()
  2119. {
  2120.   if (!rl_point)
  2121.     ding ();
  2122.   else
  2123.     {
  2124.       int orig_point = rl_point;
  2125.  
  2126.       while (rl_point && whitespace (the_line[rl_point - 1]))
  2127.     rl_point--;
  2128.  
  2129.       while (rl_point && !whitespace (the_line[rl_point - 1]))
  2130.     rl_point--;
  2131.  
  2132.       rl_kill_text (rl_point, orig_point);
  2133.     }
  2134.   return 0;
  2135. }
  2136.  
  2137. /* Here is C-u doing what Unix does.  You don't *have* to use these
  2138.    key-bindings.  We have a choice of killing the entire line, or
  2139.    killing from where we are to the start of the line.  We choose the
  2140.    latter, because if you are a Unix weenie, then you haven't backspaced
  2141.    into the line at all, and if you aren't, then you know what you are
  2142.    doing. */
  2143. rl_unix_line_discard ()
  2144. {
  2145.   if (!rl_point)
  2146.     ding ();
  2147.   else
  2148.     {
  2149.       rl_kill_text (rl_point, 0);
  2150.       rl_point = 0;
  2151.     }
  2152.   return 0;
  2153. }
  2154.  
  2155.  
  2156. /* **************************************************************** */
  2157. /*                                    */
  2158. /*            Commands For Typos                */
  2159. /*                                    */
  2160. /* **************************************************************** */
  2161.  
  2162. /* Random and interesting things in here.  */
  2163.  
  2164. /* **************************************************************** */
  2165. /*                                    */
  2166. /*            Changing Case                    */
  2167. /*                                    */
  2168. /* **************************************************************** */
  2169.  
  2170. /* The three kinds of things that we know how to do. */
  2171. #define UpCase 1
  2172. #define DownCase 2
  2173. #define CapCase 3
  2174.  
  2175. static int rl_change_case ();
  2176.  
  2177. /* Uppercase the word at point. */
  2178. rl_upcase_word (count)
  2179.      int count;
  2180. {
  2181.   return (rl_change_case (count, UpCase));
  2182. }
  2183.  
  2184. /* Lowercase the word at point. */
  2185. rl_downcase_word (count)
  2186.      int count;
  2187. {
  2188.   return (rl_change_case (count, DownCase));
  2189. }
  2190.  
  2191. /* Upcase the first letter, downcase the rest. */
  2192. rl_capitalize_word (count)
  2193.      int count;
  2194. {
  2195.  return (rl_change_case (count, CapCase));
  2196. }
  2197.  
  2198. /* The meaty function.
  2199.    Change the case of COUNT words, performing OP on them.
  2200.    OP is one of UpCase, DownCase, or CapCase.
  2201.    If a negative argument is given, leave point where it started,
  2202.    otherwise, leave it where it moves to. */
  2203. static int
  2204. rl_change_case (count, op)
  2205.      int count, op;
  2206. {
  2207.   register int start = rl_point, end;
  2208.   int state = 0;
  2209.  
  2210.   rl_forward_word (count);
  2211.   end = rl_point;
  2212.  
  2213.   if (count < 0)
  2214.     {
  2215.       int temp = start;
  2216.       start = end;
  2217.       end = temp;
  2218.     }
  2219.  
  2220.   /* We are going to modify some text, so let's prepare to undo it. */
  2221.   rl_modifying (start, end);
  2222.  
  2223.   for (; start < end; start++)
  2224.     {
  2225.       switch (op)
  2226.     {
  2227.     case UpCase:
  2228.       the_line[start] = to_upper (the_line[start]);
  2229.       break;
  2230.  
  2231.     case DownCase:
  2232.       the_line[start] = to_lower (the_line[start]);
  2233.       break;
  2234.  
  2235.     case CapCase:
  2236.       if (state == 0)
  2237.         {
  2238.           the_line[start] = to_upper (the_line[start]);
  2239.           state = 1;
  2240.         }
  2241.       else
  2242.         {
  2243.           the_line[start] = to_lower (the_line[start]);
  2244.         }
  2245.       if (!pure_alphabetic (the_line[start]))
  2246.         state = 0;
  2247.       break;
  2248.  
  2249.     default:
  2250.       abort ();
  2251.       return -1;
  2252.     }
  2253.     }
  2254.   rl_point = end;
  2255.   return 0;
  2256. }
  2257.  
  2258. /* **************************************************************** */
  2259. /*                                    */
  2260. /*            Transposition                    */
  2261. /*                                    */
  2262. /* **************************************************************** */
  2263.  
  2264. /* Transpose the words at point. */
  2265. rl_transpose_words (count)
  2266.      int count;
  2267. {
  2268.   char *word1, *word2;
  2269.   int w1_beg, w1_end, w2_beg, w2_end;
  2270.   int orig_point = rl_point;
  2271.  
  2272.   if (!count)
  2273.     return 0;
  2274.  
  2275.   /* Find the two words. */
  2276.   rl_forward_word (count);
  2277.   w2_end = rl_point;
  2278.   rl_backward_word (1);
  2279.   w2_beg = rl_point;
  2280.   rl_backward_word (count);
  2281.   w1_beg = rl_point;
  2282.   rl_forward_word (1);
  2283.   w1_end = rl_point;
  2284.  
  2285.   /* Do some check to make sure that there really are two words. */
  2286.   if ((w1_beg == w2_beg) || (w2_beg < w1_end))
  2287.     {
  2288.       ding ();
  2289.       rl_point = orig_point;
  2290.       return -1;
  2291.     }
  2292.  
  2293.   /* Get the text of the words. */
  2294.   word1 = rl_copy_text (w1_beg, w1_end);
  2295.   word2 = rl_copy_text (w2_beg, w2_end);
  2296.  
  2297.   /* We are about to do many insertions and deletions.  Remember them
  2298.      as one operation. */
  2299.   rl_begin_undo_group ();
  2300.  
  2301.   /* Do the stuff at word2 first, so that we don't have to worry
  2302.      about word1 moving. */
  2303.   rl_point = w2_beg;
  2304.   rl_delete_text (w2_beg, w2_end);
  2305.   rl_insert_text (word1);
  2306.  
  2307.   rl_point = w1_beg;
  2308.   rl_delete_text (w1_beg, w1_end);
  2309.   rl_insert_text (word2);
  2310.  
  2311.   /* This is exactly correct since the text before this point has not
  2312.      changed in length. */
  2313.   rl_point = w2_end;
  2314.  
  2315.   /* I think that does it. */
  2316.   rl_end_undo_group ();
  2317.   free (word1);
  2318.   free (word2);
  2319.  
  2320.   return 0;
  2321. }
  2322.  
  2323. /* Transpose the characters at point.  If point is at the end of the line,
  2324.    then transpose the characters before point. */
  2325. rl_transpose_chars (count)
  2326.      int count;
  2327. {
  2328.   char dummy[2];
  2329.  
  2330.   if (!count)
  2331.     return 0;
  2332.  
  2333.   if (!rl_point || rl_end < 2)
  2334.     {
  2335.       ding ();
  2336.       return -1;
  2337.     }
  2338.  
  2339.   rl_begin_undo_group ();
  2340.  
  2341.   if (rl_point == rl_end)
  2342.     {
  2343.       --rl_point;
  2344.       count = 1;
  2345.     }
  2346.   rl_point--;
  2347.  
  2348.   dummy[0] = the_line[rl_point];
  2349.   dummy[1] = '\0';
  2350.  
  2351.   rl_delete_text (rl_point, rl_point + 1);
  2352.  
  2353.   rl_point += count;
  2354.   if (rl_point > rl_end)
  2355.     rl_point = rl_end;
  2356.   else if (rl_point < 0)
  2357.     rl_point = 0;
  2358.   rl_insert_text (dummy);
  2359.  
  2360.   rl_end_undo_group ();
  2361.   return 0;
  2362. }
  2363.  
  2364. /* **************************************************************** */
  2365. /*                                    */
  2366. /*            Undo, and Undoing                */
  2367. /*                                    */
  2368. /* **************************************************************** */
  2369.  
  2370. /* The current undo list for THE_LINE. */
  2371. UNDO_LIST *rl_undo_list = (UNDO_LIST *)NULL;
  2372.  
  2373. /* Remember how to undo something.  Concatenate some undos if that
  2374.    seems right. */
  2375. void
  2376. rl_add_undo (what, start, end, text)
  2377.      enum undo_code what;
  2378.      int start, end;
  2379.      char *text;
  2380. {
  2381.   UNDO_LIST *temp = (UNDO_LIST *)xmalloc (sizeof (UNDO_LIST));
  2382.   temp->what = what;
  2383.   temp->start = start;
  2384.   temp->end = end;
  2385.   temp->text = text;
  2386.   temp->next = rl_undo_list;
  2387.   rl_undo_list = temp;
  2388. }
  2389.  
  2390. /* Free the existing undo list. */
  2391. void
  2392. free_undo_list ()
  2393. {
  2394.   while (rl_undo_list)
  2395.     {
  2396.       UNDO_LIST *release = rl_undo_list;
  2397.       rl_undo_list = rl_undo_list->next;
  2398.  
  2399.       if (release->what == UNDO_DELETE)
  2400.     free (release->text);
  2401.  
  2402.       free (release);
  2403.     }
  2404.   rl_undo_list = (UNDO_LIST *)NULL;
  2405. }
  2406.  
  2407. /* Undo the next thing in the list.  Return 0 if there
  2408.    is nothing to undo, or non-zero if there was. */
  2409. int
  2410. rl_do_undo ()
  2411. {
  2412.   UNDO_LIST *release;
  2413.   int waiting_for_begin = 0;
  2414.  
  2415. undo_thing:
  2416.   if (!rl_undo_list)
  2417.     return (0);
  2418.  
  2419.   doing_an_undo = 1;
  2420.  
  2421.   switch (rl_undo_list->what) {
  2422.  
  2423.     /* Undoing deletes means inserting some text. */
  2424.   case UNDO_DELETE:
  2425.     rl_point = rl_undo_list->start;
  2426.     rl_insert_text (rl_undo_list->text);
  2427.     free (rl_undo_list->text);
  2428.     break;
  2429.  
  2430.     /* Undoing inserts means deleting some text. */
  2431.   case UNDO_INSERT:
  2432.     rl_delete_text (rl_undo_list->start, rl_undo_list->end);
  2433.     rl_point = rl_undo_list->start;
  2434.     break;
  2435.  
  2436.     /* Undoing an END means undoing everything 'til we get to
  2437.        a BEGIN. */
  2438.   case UNDO_END:
  2439.     waiting_for_begin++;
  2440.     break;
  2441.  
  2442.     /* Undoing a BEGIN means that we are done with this group. */
  2443.   case UNDO_BEGIN:
  2444.     if (waiting_for_begin)
  2445.       waiting_for_begin--;
  2446.     else
  2447. #if 0
  2448.       abort ();
  2449. #else
  2450.       ding ();
  2451. #endif
  2452.     break;
  2453.   }
  2454.  
  2455.   doing_an_undo = 0;
  2456.  
  2457.   release = rl_undo_list;
  2458.   rl_undo_list = rl_undo_list->next;
  2459.   free (release);
  2460.  
  2461.   if (waiting_for_begin)
  2462.     goto undo_thing;
  2463.  
  2464.   return (1);
  2465. }
  2466.  
  2467. /* Begin a group.  Subsequent undos are undone as an atomic operation. */
  2468. rl_begin_undo_group ()
  2469. {
  2470.   rl_add_undo (UNDO_BEGIN, 0, 0, 0);
  2471.   return 0;
  2472. }
  2473.  
  2474. /* End an undo group started with rl_begin_undo_group (). */
  2475. rl_end_undo_group ()
  2476. {
  2477.   rl_add_undo (UNDO_END, 0, 0, 0);
  2478.   return 0;
  2479. }
  2480.  
  2481. /* Save an undo entry for the text from START to END. */
  2482. rl_modifying (start, end)
  2483.      int start, end;
  2484. {
  2485.   if (start > end)
  2486.     {
  2487.       int t = start;
  2488.       start = end;
  2489.       end = t;
  2490.     }
  2491.  
  2492.   if (start != end)
  2493.     {
  2494.       char *temp = rl_copy_text (start, end);
  2495.       rl_begin_undo_group ();
  2496.       rl_add_undo (UNDO_DELETE, start, end, temp);
  2497.       rl_add_undo (UNDO_INSERT, start, end, (char *)NULL);
  2498.       rl_end_undo_group ();
  2499.     }
  2500.   return 0;
  2501. }
  2502.  
  2503. /* Revert the current line to its previous state. */
  2504. rl_revert_line ()
  2505. {
  2506.   if (!rl_undo_list)
  2507.     ding ();
  2508.   else
  2509.     {
  2510.       while (rl_undo_list)
  2511.     rl_do_undo ();
  2512.     }
  2513.   return 0;
  2514. }
  2515.  
  2516. /* Do some undoing of things that were done. */
  2517. rl_undo_command (count)
  2518.      int count;
  2519. {
  2520.   if (count < 0)
  2521.     return 0;    /* Nothing to do. */
  2522.  
  2523.   while (count)
  2524.     {
  2525.       if (rl_do_undo ())
  2526.     count--;
  2527.       else
  2528.     {
  2529.       ding ();
  2530.       break;
  2531.     }
  2532.     }
  2533.   return 0;
  2534. }
  2535.  
  2536. /* **************************************************************** */
  2537. /*                                    */
  2538. /*            History Utilities                */
  2539. /*                                    */
  2540. /* **************************************************************** */
  2541.  
  2542. /* We already have a history library, and that is what we use to control
  2543.    the history features of readline.  However, this is our local interface
  2544.    to the history mechanism. */
  2545.  
  2546. /* While we are editing the history, this is the saved
  2547.    version of the original line. */
  2548. HIST_ENTRY *saved_line_for_history = (HIST_ENTRY *)NULL;
  2549.  
  2550. /* Set the history pointer back to the last entry in the history. */
  2551. start_using_history ()
  2552. {
  2553.   using_history ();
  2554.   if (saved_line_for_history)
  2555.     free_history_entry (saved_line_for_history);
  2556.  
  2557.   saved_line_for_history = (HIST_ENTRY *)NULL;
  2558.   return 0;
  2559. }
  2560.  
  2561. /* Free the contents (and containing structure) of a HIST_ENTRY. */
  2562. void
  2563. free_history_entry (entry)
  2564.      HIST_ENTRY *entry;
  2565. {
  2566.   if (!entry)
  2567.     return;
  2568.   if (entry->line)
  2569.     free (entry->line);
  2570.   free (entry);
  2571. }
  2572.  
  2573. /* Perhaps put back the current line if it has changed. */
  2574. maybe_replace_line ()
  2575. {
  2576.   HIST_ENTRY *temp = current_history ();
  2577.  
  2578.   /* If the current line has changed, save the changes. */
  2579.   if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list))
  2580.     {
  2581.       temp = replace_history_entry (where_history (), the_line, rl_undo_list);
  2582.       free (temp->line);
  2583.       free (temp);
  2584.     }
  2585.   return 0;
  2586. }
  2587.  
  2588. /* Put back the saved_line_for_history if there is one. */
  2589. maybe_unsave_line ()
  2590. {
  2591.   if (saved_line_for_history)
  2592.     {
  2593.       int line_len;
  2594.  
  2595.       line_len = strlen (saved_line_for_history->line);
  2596.  
  2597.       if (line_len >= rl_line_buffer_len)
  2598.     rl_extend_line_buffer (line_len);
  2599.  
  2600.       strcpy (the_line, saved_line_for_history->line);
  2601.       rl_undo_list = (UNDO_LIST *)saved_line_for_history->data;
  2602.       free_history_entry (saved_line_for_history);
  2603.       saved_line_for_history = (HIST_ENTRY *)NULL;
  2604.       rl_end = rl_point = strlen (the_line);
  2605.     }
  2606.   else
  2607.     ding ();
  2608.   return 0;
  2609. }
  2610.  
  2611. /* Save the current line in saved_line_for_history. */
  2612. maybe_save_line ()
  2613. {
  2614.   if (!saved_line_for_history)
  2615.     {
  2616.       saved_line_for_history = (HIST_ENTRY *)xmalloc (sizeof (HIST_ENTRY));
  2617.       saved_line_for_history->line = savestring (the_line);
  2618.       saved_line_for_history->data = (char *)rl_undo_list;
  2619.     }
  2620.   return 0;
  2621. }
  2622.  
  2623. /* **************************************************************** */
  2624. /*                                    */
  2625. /*            History Commands                */
  2626. /*                                    */
  2627. /* **************************************************************** */
  2628.  
  2629. /* Meta-< goes to the start of the history. */
  2630. rl_beginning_of_history ()
  2631. {
  2632.   return (rl_get_previous_history (1 + where_history ()));
  2633. }
  2634.  
  2635. /* Meta-> goes to the end of the history.  (The current line). */
  2636. rl_end_of_history ()
  2637. {
  2638.   maybe_replace_line ();
  2639.   using_history ();
  2640.   maybe_unsave_line ();
  2641.   return 0;
  2642. }
  2643.  
  2644. /* Move down to the next history line. */
  2645. rl_get_next_history (count)
  2646.      int count;
  2647. {
  2648.   HIST_ENTRY *temp = (HIST_ENTRY *)NULL;
  2649.  
  2650.   if (count < 0)
  2651.     return (rl_get_previous_history (-count));
  2652.  
  2653.   if (!count)
  2654.     return 0;
  2655.  
  2656.   maybe_replace_line ();
  2657.  
  2658.   while (count)
  2659.     {
  2660.       temp = next_history ();
  2661.       if (!temp)
  2662.     break;
  2663.       --count;
  2664.     }
  2665.  
  2666.   if (!temp)
  2667.     maybe_unsave_line ();
  2668.   else
  2669.     {
  2670.       int line_len;
  2671.  
  2672.       line_len = strlen (temp->line);
  2673.  
  2674.       if (line_len >= rl_line_buffer_len)
  2675.     rl_extend_line_buffer (line_len);
  2676.  
  2677.       strcpy (the_line, temp->line);
  2678.       rl_undo_list = (UNDO_LIST *)temp->data;
  2679.       rl_end = rl_point = strlen (the_line);
  2680. #if defined (VI_MODE)
  2681.       if (rl_editing_mode == vi_mode)
  2682.     rl_point = 0;
  2683. #endif /* VI_MODE */
  2684.     }
  2685.   return 0;
  2686. }
  2687.  
  2688. /* Get the previous item out of our interactive history, making it the current
  2689.    line.  If there is no previous history, just ding. */
  2690. rl_get_previous_history (count)
  2691.      int count;
  2692. {
  2693.   HIST_ENTRY *old_temp = (HIST_ENTRY *)NULL;
  2694.   HIST_ENTRY *temp = (HIST_ENTRY *)NULL;
  2695.  
  2696.   if (count < 0)
  2697.     return (rl_get_next_history (-count));
  2698.  
  2699.   if (!count)
  2700.     return 0;
  2701.  
  2702.   /* If we don't have a line saved, then save this one. */
  2703.   maybe_save_line ();
  2704.  
  2705.   /* If the current line has changed, save the changes. */
  2706.   maybe_replace_line ();
  2707.  
  2708.   while (count)
  2709.     {
  2710.       temp = previous_history ();
  2711.       if (!temp)
  2712.     break;
  2713.       else
  2714.     old_temp = temp;
  2715.       --count;
  2716.     }
  2717.  
  2718.   /* If there was a large argument, and we moved back to the start of the
  2719.      history, that is not an error.  So use the last value found. */
  2720.   if (!temp && old_temp)
  2721.     temp = old_temp;
  2722.  
  2723.   if (!temp)
  2724.     ding ();
  2725.   else
  2726.     {
  2727.       int line_len;
  2728.  
  2729.       line_len = strlen (temp->line);
  2730.  
  2731.       if (line_len >= rl_line_buffer_len)
  2732.     rl_extend_line_buffer (line_len);
  2733.  
  2734.       strcpy (the_line, temp->line);
  2735.       rl_undo_list = (UNDO_LIST *)temp->data;
  2736.       rl_end = rl_point = line_len;
  2737.  
  2738. #if defined (VI_MODE)
  2739.       if (rl_editing_mode == vi_mode)
  2740.     rl_point = 0;
  2741. #endif /* VI_MODE */
  2742.     }
  2743.   return 0;
  2744. }
  2745.  
  2746. /* Make C be the next command to be executed. */
  2747. rl_execute_next (c)
  2748.      int c;
  2749. {
  2750.   rl_pending_input = c;
  2751.   return 0;
  2752. }
  2753.  
  2754. /* **************************************************************** */
  2755. /*                                    */
  2756. /*           The Mark and the Region.                */
  2757. /*                                    */
  2758. /* **************************************************************** */
  2759.  
  2760. /* Set the mark at POSITION. */
  2761. rl_set_mark (position)
  2762.      int position;
  2763. {
  2764.   if (position > rl_end)
  2765.     return -1;
  2766.  
  2767.   rl_mark = position;
  2768.   return 0;
  2769. }
  2770.  
  2771. /* Exchange the position of mark and point. */
  2772. rl_exchange_mark_and_point ()
  2773. {
  2774.   if (rl_mark > rl_end)
  2775.     rl_mark = -1;
  2776.  
  2777.   if (rl_mark == -1)
  2778.     {
  2779.       ding ();
  2780.       return -1;
  2781.     }
  2782.   else
  2783.     {
  2784.       int temp = rl_point;
  2785.  
  2786.       rl_point = rl_mark;
  2787.       rl_mark = temp;
  2788.     }
  2789.   return 0;
  2790. }
  2791.  
  2792.  
  2793. /* **************************************************************** */
  2794. /*                                    */
  2795. /*            Killing Mechanism                */
  2796. /*                                    */
  2797. /* **************************************************************** */
  2798.  
  2799. /* What we assume for a max number of kills. */
  2800. #define DEFAULT_MAX_KILLS 10
  2801.  
  2802. /* The real variable to look at to find out when to flush kills. */
  2803. int rl_max_kills = DEFAULT_MAX_KILLS;
  2804.  
  2805. /* Where to store killed text. */
  2806. char **rl_kill_ring = (char **)NULL;
  2807.  
  2808. /* Where we are in the kill ring. */
  2809. int rl_kill_index = 0;
  2810.  
  2811. /* How many slots we have in the kill ring. */
  2812. int rl_kill_ring_length = 0;
  2813.  
  2814. /* How to say that you only want to save a certain amount
  2815.    of kill material. */
  2816. rl_set_retained_kills (num)
  2817.      int num;
  2818. {
  2819.   return 0;
  2820. }
  2821.  
  2822. /* The way to kill something.  This appends or prepends to the last
  2823.    kill, if the last command was a kill command.  if FROM is less
  2824.    than TO, then the text is appended, otherwise prepended.  If the
  2825.    last command was not a kill command, then a new slot is made for
  2826.    this kill. */
  2827. rl_kill_text (from, to)
  2828.      int from, to;
  2829. {
  2830.   int slot;
  2831.   char *text = rl_copy_text (from, to);
  2832.  
  2833.   /* Is there anything to kill? */
  2834.   if (from == to)
  2835.     {
  2836.       free (text);
  2837.       last_command_was_kill++;
  2838.       return 0;
  2839.     }
  2840.  
  2841.   /* Delete the copied text from the line. */
  2842.   rl_delete_text (from, to);
  2843.  
  2844.   /* First, find the slot to work with. */
  2845.   if (!last_command_was_kill)
  2846.     {
  2847.       /* Get a new slot.  */
  2848.       if (!rl_kill_ring)
  2849.     {
  2850.       /* If we don't have any defined, then make one. */
  2851.       rl_kill_ring = (char **)
  2852.         xmalloc (((rl_kill_ring_length = 1) + 1) * sizeof (char *));
  2853.       slot = 1;
  2854.     }
  2855.       else
  2856.     {
  2857.       /* We have to add a new slot on the end, unless we have
  2858.          exceeded the max limit for remembering kills. */
  2859.       slot = rl_kill_ring_length;
  2860.       if (slot == rl_max_kills)
  2861.         {
  2862.           register int i;
  2863.           free (rl_kill_ring[0]);
  2864.           for (i = 0; i < slot; i++)
  2865.         rl_kill_ring[i] = rl_kill_ring[i + 1];
  2866.         }
  2867.       else
  2868.         {
  2869.           rl_kill_ring =
  2870.         (char **)
  2871.           xrealloc (rl_kill_ring,
  2872.                 ((slot = (rl_kill_ring_length += 1)) + 1)
  2873.                 * sizeof (char *));
  2874.         }
  2875.     }
  2876.       slot--;
  2877.     }
  2878.   else
  2879.     {
  2880.       slot = rl_kill_ring_length - 1;
  2881.     }
  2882.  
  2883.   /* If the last command was a kill, prepend or append. */
  2884.   if (last_command_was_kill && rl_editing_mode != vi_mode)
  2885.     {
  2886.       char *old = rl_kill_ring[slot];
  2887.       char *new = (char *)xmalloc (1 + strlen (old) + strlen (text));
  2888.  
  2889.       if (from < to)
  2890.     {
  2891.       strcpy (new, old);
  2892.       strcat (new, text);
  2893.     }
  2894.       else
  2895.     {
  2896.       strcpy (new, text);
  2897.       strcat (new, old);
  2898.     }
  2899.       free (old);
  2900.       free (text);
  2901.       rl_kill_ring[slot] = new;
  2902.     }
  2903.   else
  2904.     {
  2905.       rl_kill_ring[slot] = text;
  2906.     }
  2907.   rl_kill_index = slot;
  2908.   last_command_was_kill++;
  2909.   return 0;
  2910. }
  2911.  
  2912. /* Now REMEMBER!  In order to do prepending or appending correctly, kill
  2913.    commands always make rl_point's original position be the FROM argument,
  2914.    and rl_point's extent be the TO argument. */
  2915.  
  2916. /* **************************************************************** */
  2917. /*                                    */
  2918. /*            Killing Commands                */
  2919. /*                                    */
  2920. /* **************************************************************** */
  2921.  
  2922. /* Delete the word at point, saving the text in the kill ring. */
  2923. rl_kill_word (count)
  2924.      int count;
  2925. {
  2926.   int orig_point = rl_point;
  2927.  
  2928.   if (count < 0)
  2929.     return (rl_backward_kill_word (-count));
  2930.   else
  2931.     {
  2932.       rl_forward_word (count);
  2933.  
  2934.       if (rl_point != orig_point)
  2935.     rl_kill_text (orig_point, rl_point);
  2936.  
  2937.       rl_point = orig_point;
  2938.     }
  2939.   return 0;
  2940. }
  2941.  
  2942. /* Rubout the word before point, placing it on the kill ring. */
  2943. rl_backward_kill_word (count)
  2944.      int count;
  2945. {
  2946.   int orig_point = rl_point;
  2947.  
  2948.   if (count < 0)
  2949.     return (rl_kill_word (-count));
  2950.   else
  2951.     {
  2952.       rl_backward_word (count);
  2953.  
  2954.       if (rl_point != orig_point)
  2955.     rl_kill_text (orig_point, rl_point);
  2956.     }
  2957. }
  2958.  
  2959. /* Kill from here to the end of the line.  If DIRECTION is negative, kill
  2960.    back to the line start instead. */
  2961. rl_kill_line (direction)
  2962.      int direction;
  2963. {
  2964.   int orig_point = rl_point;
  2965.  
  2966.   if (direction < 0)
  2967.     return (rl_backward_kill_line (1));
  2968.   else
  2969.     {
  2970.       rl_end_of_line ();
  2971.       if (orig_point != rl_point)
  2972.     rl_kill_text (orig_point, rl_point);
  2973.       rl_point = orig_point;
  2974.     }
  2975.   return 0;
  2976. }
  2977.  
  2978. /* Kill backwards to the start of the line.  If DIRECTION is negative, kill
  2979.    forwards to the line end instead. */
  2980. rl_backward_kill_line (direction)
  2981.      int direction;
  2982. {
  2983.   int orig_point = rl_point;
  2984.  
  2985.   if (direction < 0)
  2986.     return (rl_kill_line (1));
  2987.   else
  2988.     {
  2989.       if (!rl_point)
  2990.     ding ();
  2991.       else
  2992.     {
  2993.       rl_beg_of_line ();
  2994.       rl_kill_text (orig_point, rl_point);
  2995.     }
  2996.     }
  2997.   return 0;
  2998. }
  2999.  
  3000. /* Yank back the last killed text.  This ignores arguments. */
  3001. rl_yank ()
  3002. {
  3003.   if (!rl_kill_ring)
  3004.     {
  3005.       rl_abort ();
  3006.       return -1;
  3007.     }
  3008.  
  3009.   rl_set_mark (rl_point);
  3010.   rl_insert_text (rl_kill_ring[rl_kill_index]);
  3011.   return 0;
  3012. }
  3013.  
  3014. /* If the last command was yank, or yank_pop, and the text just
  3015.    before point is identical to the current kill item, then
  3016.    delete that text from the line, rotate the index down, and
  3017.    yank back some other text. */
  3018. rl_yank_pop ()
  3019. {
  3020.   int l;
  3021.  
  3022.   if (((rl_last_func != rl_yank_pop) && (rl_last_func != rl_yank)) ||
  3023.       !rl_kill_ring)
  3024.     {
  3025.       rl_abort ();
  3026.       return -1;
  3027.     }
  3028.  
  3029.   l = strlen (rl_kill_ring[rl_kill_index]);
  3030.   if (((rl_point - l) >= 0) &&
  3031.       (strncmp (the_line + (rl_point - l),
  3032.         rl_kill_ring[rl_kill_index], l) == 0))
  3033.     {
  3034.       rl_delete_text ((rl_point - l), rl_point);
  3035.       rl_point -= l;
  3036.       rl_kill_index--;
  3037.       if (rl_kill_index < 0)
  3038.     rl_kill_index = rl_kill_ring_length - 1;
  3039.       rl_yank ();
  3040.       return 0;
  3041.     }
  3042.   else
  3043.     {
  3044.       rl_abort ();
  3045.       return -1;
  3046.     }
  3047. }
  3048.  
  3049. /* Yank the COUNTth argument from the previous history line. */
  3050. rl_yank_nth_arg (count, ignore)
  3051.      int count;
  3052. {
  3053.   register HIST_ENTRY *entry = previous_history ();
  3054.   char *arg;
  3055.  
  3056.   if (entry)
  3057.     next_history ();
  3058.   else
  3059.     {
  3060.       ding ();
  3061.       return -1;
  3062.     }
  3063.  
  3064.   arg = history_arg_extract (count, count, entry->line);
  3065.   if (!arg || !*arg)
  3066.     {
  3067.       ding ();
  3068.       return -1;
  3069.     }
  3070.  
  3071.   rl_begin_undo_group ();
  3072.  
  3073. #if defined (VI_MODE)
  3074.   /* Vi mode always inserts a space before yanking the argument, and it
  3075.      inserts it right *after* rl_point. */
  3076.   if (rl_editing_mode == vi_mode)
  3077.     rl_point++;
  3078. #endif /* VI_MODE */
  3079.  
  3080. #if 0
  3081.   if (rl_point && the_line[rl_point - 1] != ' ')
  3082.     rl_insert_text (" ");
  3083. #endif
  3084.  
  3085.   rl_insert_text (arg);
  3086.   free (arg);
  3087.  
  3088.   rl_end_undo_group ();
  3089.   return 0;
  3090. }
  3091.  
  3092. /* How to toggle back and forth between editing modes. */
  3093. rl_vi_editing_mode ()
  3094. {
  3095. #if defined (VI_MODE)
  3096.   rl_editing_mode = vi_mode;
  3097.   rl_vi_insertion_mode ();
  3098.   return 0;
  3099. #endif /* VI_MODE */
  3100. }
  3101.  
  3102. rl_emacs_editing_mode ()
  3103. {
  3104.   rl_editing_mode = emacs_mode;
  3105.   _rl_keymap = emacs_standard_keymap;
  3106.   return 0;
  3107. }
  3108.  
  3109.  
  3110. /* **************************************************************** */
  3111. /*                                    */
  3112. /*            USG (System V) Support                */
  3113. /*                                    */
  3114. /* **************************************************************** */
  3115.  
  3116. int
  3117. rl_getc (stream)
  3118.      FILE *stream;
  3119. {
  3120.   int result;
  3121.   unsigned char c;
  3122.  
  3123. #if defined (MINIMAL)
  3124.   if (isatty (0))
  3125.     return (getkey () & 0x7f);
  3126. #endif /* MINIMAL */
  3127.  
  3128.   while (1)
  3129.     {
  3130.       result = read (fileno (stream), &c, sizeof (unsigned char));
  3131.  
  3132.       if (result == sizeof (unsigned char))
  3133.     return (c);
  3134.  
  3135.       /* If zero characters are returned, then the file that we are
  3136.      reading from is empty!  Return EOF in that case. */
  3137.       if (result == 0)
  3138.     return (EOF);
  3139.  
  3140. #if defined (EWOULDBLOCK)
  3141.       if (errno == EWOULDBLOCK)
  3142.     {
  3143.       int flags;
  3144.  
  3145.       if ((flags = fcntl (fileno (stream), F_GETFL, 0)) < 0)
  3146.         return (EOF);
  3147.       if (flags & O_NDELAY)
  3148.         {
  3149.           flags &= ~O_NDELAY;
  3150.           fcntl (fileno (stream), F_SETFL, flags);
  3151.           continue;
  3152.         }
  3153.       continue;
  3154.     }
  3155. #endif /* EWOULDBLOCK */
  3156.  
  3157. #if defined (_POSIX_VERSION) && defined (EAGAIN) && defined (O_NONBLOCK)
  3158.       if (errno == EAGAIN)
  3159.     {
  3160.       int flags;
  3161.  
  3162.       if ((flags = fcntl (fileno (stream), F_GETFL, 0)) < 0)
  3163.         return (EOF);
  3164.       if (flags & O_NONBLOCK)
  3165.         {
  3166.           flags &= ~O_NONBLOCK;
  3167.           fcntl (fileno (stream), F_SETFL, flags);
  3168.           continue;
  3169.         }
  3170.     }
  3171. #endif /* _POSIX_VERSION && EAGAIN && O_NONBLOCK */
  3172.  
  3173. #if !defined (MINIMAL)
  3174.       /* If the error that we received was SIGINT, then try again,
  3175.      this is simply an interrupted system call to read ().
  3176.      Otherwise, some error ocurred, also signifying EOF. */
  3177.       if (errno != EINTR)
  3178.     return (EOF);
  3179. #endif /* !MINIMAL */
  3180.     }
  3181. }
  3182.  
  3183. char *
  3184. _rl_savestring (str)
  3185.      char *str;
  3186. {
  3187.   char *copy = (char*) xmalloc (strlen (str) + 1);
  3188.   strcpy (copy, str);
  3189.   return copy;
  3190. }
  3191.  
  3192. #if defined (STATIC_MALLOC)
  3193.  
  3194. /* **************************************************************** */
  3195. /*                                    */
  3196. /*            xmalloc and xrealloc ()                     */
  3197. /*                                    */
  3198. /* **************************************************************** */
  3199.  
  3200. static void memory_error_and_abort ();
  3201.  
  3202. static char *
  3203. xmalloc (bytes)
  3204.      int bytes;
  3205. {
  3206.   char *temp = (char *)malloc (bytes);
  3207.  
  3208.   if (!temp)
  3209.     memory_error_and_abort ();
  3210.   return (temp);
  3211. }
  3212.  
  3213. static char *
  3214. xrealloc (pointer, bytes)
  3215.      char *pointer;
  3216.      int bytes;
  3217. {
  3218.   char *temp;
  3219.  
  3220.   if (!pointer)
  3221.     temp = (char *)malloc (bytes);
  3222.   else
  3223.     temp = (char *)realloc (pointer, bytes);
  3224.  
  3225.   if (!temp)
  3226.     memory_error_and_abort ();
  3227.  
  3228.   return (temp);
  3229. }
  3230.  
  3231. static void
  3232. memory_error_and_abort ()
  3233. {
  3234.   fprintf (stderr, "readline: Out of virtual memory!\n");
  3235.   abort ();
  3236. }
  3237. #endif /* STATIC_MALLOC */
  3238.  
  3239.  
  3240. /* **************************************************************** */
  3241. /*                                    */
  3242. /*            Testing Readline                */
  3243. /*                                    */
  3244. /* **************************************************************** */
  3245.  
  3246. #if defined (TEST)
  3247.  
  3248. main ()
  3249. {
  3250.   HIST_ENTRY **history_list ();
  3251.   char *temp = (char *)NULL;
  3252.   char *prompt = "readline% ";
  3253.   int done = 0;
  3254.  
  3255.   while (!done)
  3256.     {
  3257.       temp = readline (prompt);
  3258.  
  3259.       /* Test for EOF. */
  3260.       if (!temp)
  3261.     exit (1);
  3262.  
  3263.       /* If there is anything on the line, print it and remember it. */
  3264.       if (*temp)
  3265.     {
  3266.       fprintf (stderr, "%s\r\n", temp);
  3267.       add_history (temp);
  3268.     }
  3269.  
  3270.       /* Check for `command' that we handle. */
  3271.       if (strcmp (temp, "quit") == 0)
  3272.     done = 1;
  3273.  
  3274.       if (strcmp (temp, "list") == 0)
  3275.     {
  3276.       HIST_ENTRY **list = history_list ();
  3277.       register int i;
  3278.       if (list)
  3279.         {
  3280.           for (i = 0; list[i]; i++)
  3281.         {
  3282.           fprintf (stderr, "%d: %s\r\n", i, list[i]->line);
  3283.           free (list[i]->line);
  3284.         }
  3285.           free (list);
  3286.         }
  3287.     }
  3288.       free (temp);
  3289.     }
  3290. }
  3291.  
  3292. #endif /* TEST */
  3293.  
  3294.  
  3295. /*
  3296.  * Local variables:
  3297.  * compile-command: "gcc -g -traditional -I. -I.. -DTEST -o readline readline.c keymaps.o funmap.o history.o -ltermcap"
  3298.  * end:
  3299.  */
  3300.