home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / gnu / readline / ChangeLog next >
Encoding:
Text File  |  1991-04-25  |  4.2 KB  |  121 lines

  1. Thu Apr 25 12:03:49 1991  Brian Fox  (bfox at gnuwest.fsf.org)
  2.  
  3.     * vi_mode.c (rl_vi_fword, fWord, etc.  All functions use
  4.     the macro `isident()'.  Fixed movement bug which prevents
  5.     continious movement through the text.
  6.  
  7. Fri Jul 27 16:47:01 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  8.  
  9.     * readline.c (parser_if) Allow "$if term=foo" construct.
  10.  
  11. Wed May 23 16:10:33 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  12.  
  13.     * readline.c (rl_dispatch) Correctly remember the last command
  14.     executed.  Fixed typo in username_completion_function ().
  15.  
  16. Mon Apr  9 19:55:48 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  17.  
  18.     * readline.c: username_completion_function (); For text passed in
  19.     with a leading `~', remember that this could be a filename (after
  20.     it is completed).
  21.  
  22. Thu Apr  5 13:44:24 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  23.  
  24.     * readline.c: rl_search_history (): Correctly handle case of an
  25.     unfound search string, but a graceful exit (as with ESC).
  26.  
  27.     * readline.c: rl_restart_output ();  The Apollo passes the address
  28.     of the file descriptor to TIOCSTART, not the descriptor itself.
  29.  
  30. Tue Mar 20 05:38:55 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  31.  
  32.     * readline.c: rl_complete (); second call in a row causes possible
  33.     completions to be listed.
  34.  
  35.     * readline.c: rl_redisplay (), added prompt_this_line variable
  36.     which is the first character character following \n in prompt.
  37.  
  38. Sun Mar 11 04:32:03 1990  Brian Fox  (bfox at gnuwest.fsf.org)
  39.  
  40.     * Signals are now supposedly handled inside of SYSV compilation.
  41.  
  42. Wed Jan 17 19:24:09 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  43.  
  44.     * history.c: history_expand (); fixed overwriting memory error,
  45.     added needed argument to call to get_history_event ().
  46.  
  47. Thu Jan 11 10:54:04 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  48.  
  49.     * readline.c: added mark_modified_lines to control the
  50.     display of an asterisk on modified history lines.  Also
  51.     added a user variable called mark-modified-lines to the
  52.     `set' command.
  53.  
  54. Thu Jan  4 10:38:05 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
  55.  
  56.     * readline.c: start_insert ().  Only use IC if we don't have an im
  57.     capability.
  58.  
  59. Fri Sep  8 09:00:45 1989  Brian Fox  (bfox at aurel)
  60.  
  61.     * readline.c: rl_prep_terminal ().  Only turn on 8th bit
  62.       as meta-bit iff the terminal is not using parity.
  63.  
  64. Sun Sep  3 08:57:40 1989  Brian Fox  (bfox at aurel)
  65.  
  66.     * readline.c: start_insert ().  Uses multiple
  67.       insertion call in cases where that makes sense.
  68.  
  69.       rl_insert ().  Read type-ahead buffer for additional
  70.       keys that are bound to rl_insert, and insert them
  71.       all at once.  Make insertion of single keys given
  72.       with an argument much more efficient.
  73.  
  74. Tue Aug  8 18:13:57 1989  Brian Fox  (bfox at aurel)
  75.  
  76.     * readline.c: Changed handling of EOF.  readline () returns
  77.      (char *)EOF or consed string.  The EOF character is read from the
  78.      tty, or if the tty doesn't have one, defaults to C-d.
  79.  
  80.     * readline.c: Added support for event driven programs.
  81.       rl_event_hook is the address of a function you want called
  82.       while Readline is waiting for input.
  83.  
  84.     * readline.c: Cleanup time.  Functions without type declarations
  85.       do not use return with a value.
  86.  
  87.     * history.c: history_expand () has new variable which is the
  88.       characters to ignore immediately following history_expansion_char.
  89.  
  90. Sun Jul 16 08:14:00 1989  Brian Fox  (bfox at aurel)
  91.  
  92.     * rl_prep_terminal ()
  93.       BSD version turns off C-s, C-q, C-y, C-v.
  94.  
  95.     * readline.c -- rl_prep_terminal ()
  96.       SYSV version hacks readline_echoing_p.
  97.       BSD version turns on passing of the 8th bit for the duration
  98.       of reading the line.
  99.  
  100. Tue Jul 11 06:25:01 1989  Brian Fox  (bfox at aurel)
  101.  
  102.     * readline.c: new variable rl_tilde_expander.
  103.       If non-null, this contains the address of a function to call if
  104.       the standard meaning for expanding a tilde fails.  The function is
  105.       called with the text sans tilde (as in "foo"), and returns a
  106.       malloc()'ed string which is the expansion, or a NULL pointer if
  107.       there is no expansion. 
  108.  
  109.     * readline.h - new file chardefs.h
  110.       Separates things that only readline.c needs from the standard
  111.       header file publishing interesting things about readline.
  112.  
  113.     * readline.c:
  114.       readline_default_bindings () now looks at terminal chararacters
  115.       and binds those as well.
  116.  
  117. Wed Jun 28 20:20:51 1989  Brian Fox  (bfox at aurel)
  118.  
  119.     * Made readline and history into independent libraries.
  120.  
  121.