home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / readline.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  75KB  |  3,401 lines

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