1 Sun May 19 07:49:34 1991 John Gilmore and Rich Pixley (at cygnus.com)
3 Make readline independent of the applications that use it.
5 * readline.h, keymaps.h: include other include files with "foo.h"
6 rather than <readline/foo.h>. This works here, and works when
7 included from other applications.
9 * Makefile.in: Create template for configurable Makefile.
10 This version is not ready for prime time, so we have left
11 Makefile itself (the original version) too.
13 Sun Mar 11 04:32:03 1990 Brian Fox (bfox at gnuwest.fsf.org)
15 * Signals are now supposedly handled inside of SYSV compilation.
17 Wed Jan 17 19:24:09 1990 Brian Fox (bfox at sbphy.ucsb.edu)
19 * history.c: history_expand (); fixed overwriting memory error,
20 added needed argument to call to get_history_event ().
22 Thu Jan 11 10:54:04 1990 Brian Fox (bfox at sbphy.ucsb.edu)
24 * readline.c, readline.h: added rl_show_star to control the
25 display of an asterisk on modified history lines.
27 Thu Jan 4 10:38:05 1990 Brian Fox (bfox at sbphy.ucsb.edu)
29 * readline.c: start_insert (). Only use IC if we don't have an im
32 Fri Sep 8 09:00:45 1989 Brian Fox (bfox at aurel)
34 * readline.c: rl_prep_terminal (). Only turn on 8th bit
35 as meta-bit iff the terminal is not using parity.
37 Sun Sep 3 08:57:40 1989 Brian Fox (bfox at aurel)
39 * readline.c: start_insert (). Uses multiple
40 insertion call in cases where that makes sense.
42 rl_insert (). Read type-ahead buffer for additional
43 keys that are bound to rl_insert, and insert them
44 all at once. Make insertion of single keys given
45 with an argument much more efficient.
47 Tue Aug 8 18:13:57 1989 Brian Fox (bfox at aurel)
49 * readline.c: Changed handling of EOF. readline () returns
50 (char *)EOF or consed string. The EOF character is read from the
51 tty, or if the tty doesn't have one, defaults to C-d.
53 * readline.c: Added support for event driven programs.
54 rl_event_hook is the address of a function you want called
55 while Readline is waiting for input.
57 * readline.c: Cleanup time. Functions without type declarations
58 do not use return with a value.
60 * history.c: history_expand () has new variable which is the
61 characters to ignore immediately following history_expansion_char.
63 Sun Jul 16 08:14:00 1989 Brian Fox (bfox at aurel)
66 BSD version turns off C-s, C-q, C-y, C-v.
68 * readline.c -- rl_prep_terminal ()
69 SYSV version hacks readline_echoing_p.
70 BSD version turns on passing of the 8th bit for the duration
73 Tue Jul 11 06:25:01 1989 Brian Fox (bfox at aurel)
75 * readline.c: new variable rl_tilde_expander.
76 If non-null, this contains the address of a function to call if
77 the standard meaning for expanding a tilde fails. The function is
78 called with the text sans tilde (as in "foo"), and returns a
79 malloc()'ed string which is the expansion, or a NULL pointer if
80 there is no expansion.
82 * readline.h - new file chardefs.h
83 Separates things that only readline.c needs from the standard
84 header file publishing interesting things about readline.
87 readline_default_bindings () now looks at terminal chararacters
88 and binds those as well.
90 Wed Jun 28 20:20:51 1989 Brian Fox (bfox at aurel)
92 * Made readline and history into independent libraries.