* readline.c (filename_completion_function): use struct dirent
[external/binutils.git] / readline / ChangeLog
1 Mon Nov 18 23:59:52 1991  Stu Grossman  (grossman at cygnus.com)
2
3         * readline.c (filename_completion_function):  use struct dirent
4         instead of struct direct.
5
6 Fri Nov  1 07:02:13 1991  Brian Fox  (bfox at gnuwest.fsf.org)
7
8         * readline.c (rl_translate_keyseq) Make C-? translate to RUBOUT
9         unconditionally.
10
11 Mon Oct 28 11:34:52 1991  Brian Fox  (bfox at gnuwest.fsf.org)
12
13         * readline.c; Use Posix directory routines and macros.
14
15         * funmap.c; Add entry for call-last-kbd-macro.
16
17         * readline.c (rl_prep_term); Use system EOF character on POSIX
18         systems also.
19
20 Thu Oct  3 16:19:53 1991  Brian Fox  (bfox at gnuwest.fsf.org)
21
22         * readline.c; Make a distinction between having a TERMIOS tty
23         driver, and having POSIX signal handling.  You might one without
24         the other.  New defines used HAVE_POSIX_SIGNALS, and
25         TERMIOS_TTY_DRIVER.
26
27 Tue Jul 30 22:37:26 1991  Brian Fox  (bfox at gnuwest.fsf.org)
28
29         * readline.c: rl_getc () If a call to read () returns without an
30         error, but with zero characters, the file is empty, so return EOF.
31
32 Thu Jul 11 20:58:38 1991  Brian Fox  (bfox at gnuwest.fsf.org)
33
34         * readline.c: (rl_get_next_history, rl_get_previous_history)
35         Reallocate the buffer space if the line being moved to is longer
36         the the current space allocated.  Amazing that no one has found
37         this bug until now.
38
39 Sun Jul  7 02:37:05 1991  Brian Fox  (bfox at gnuwest.fsf.org)
40
41         * readline.c:(rl_parse_and_bind) Allow leading whitespace.
42           Make sure TERMIO and TERMIOS systems treat CR and NL
43           disctinctly.
44         
45 Tue Jun 25 04:09:27 1991  Brian Fox  (bfox at gnuwest.fsf.org)
46
47         * readline.c: Rework parsing conditionals to pay attention to the
48         prior states of the conditional stack.  This makes $if statements
49         work correctly.
50
51 Mon Jun 24 20:45:59 1991  Brian Fox  (bfox at gnuwest.fsf.org)
52
53         * readline.c: support for displaying key binding information
54         includes the functions rl_list_funmap_names (),
55         invoking_keyseqs_in_map (), rl_invoking_keyseqs (),
56         rl_dump_functions (), and rl_function_dumper ().
57
58         funmap.c: support for same includes rl_funmap_names ().
59
60         readline.c, funmap.c: no longer define STATIC_MALLOC.  However,
61         update both version of xrealloc () to handle a null pointer.
62
63 Thu Apr 25 12:03:49 1991  Brian Fox  (bfox at gnuwest.fsf.org)
64
65         * vi_mode.c (rl_vi_fword, fWord, etc.  All functions use
66         the macro `isident()'.  Fixed movement bug which prevents
67         continious movement through the text.
68
69 Fri Jul 27 16:47:01 1990  Brian Fox  (bfox at gnuwest.fsf.org)
70
71         * readline.c (parser_if) Allow "$if term=foo" construct.
72
73 Wed May 23 16:10:33 1990  Brian Fox  (bfox at gnuwest.fsf.org)
74
75         * readline.c (rl_dispatch) Correctly remember the last command
76         executed.  Fixed typo in username_completion_function ().
77
78 Mon Apr  9 19:55:48 1990  Brian Fox  (bfox at gnuwest.fsf.org)
79
80         * readline.c: username_completion_function (); For text passed in
81         with a leading `~', remember that this could be a filename (after
82         it is completed).
83
84 Thu Apr  5 13:44:24 1990  Brian Fox  (bfox at gnuwest.fsf.org)
85
86         * readline.c: rl_search_history (): Correctly handle case of an
87         unfound search string, but a graceful exit (as with ESC).
88
89         * readline.c: rl_restart_output ();  The Apollo passes the address
90         of the file descriptor to TIOCSTART, not the descriptor itself.
91
92 Tue Mar 20 05:38:55 1990  Brian Fox  (bfox at gnuwest.fsf.org)
93
94         * readline.c: rl_complete (); second call in a row causes possible
95         completions to be listed.
96
97         * readline.c: rl_redisplay (), added prompt_this_line variable
98         which is the first character character following \n in prompt.
99
100 Sun Mar 11 04:32:03 1990  Brian Fox  (bfox at gnuwest.fsf.org)
101
102         * Signals are now supposedly handled inside of SYSV compilation.
103
104 Wed Jan 17 19:24:09 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
105
106         * history.c: history_expand (); fixed overwriting memory error,
107         added needed argument to call to get_history_event ().
108
109 Thu Jan 11 10:54:04 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
110
111         * readline.c: added mark_modified_lines to control the
112         display of an asterisk on modified history lines.  Also
113         added a user variable called mark-modified-lines to the
114         `set' command.
115
116 Thu Jan  4 10:38:05 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
117
118         * readline.c: start_insert ().  Only use IC if we don't have an im
119         capability.
120
121 Fri Sep  8 09:00:45 1989  Brian Fox  (bfox at aurel)
122
123         * readline.c: rl_prep_terminal ().  Only turn on 8th bit
124           as meta-bit iff the terminal is not using parity.
125
126 Sun Sep  3 08:57:40 1989  Brian Fox  (bfox at aurel)
127
128         * readline.c: start_insert ().  Uses multiple
129           insertion call in cases where that makes sense.
130
131           rl_insert ().  Read type-ahead buffer for additional
132           keys that are bound to rl_insert, and insert them
133           all at once.  Make insertion of single keys given
134           with an argument much more efficient.
135
136 Tue Aug  8 18:13:57 1989  Brian Fox  (bfox at aurel)
137
138         * readline.c: Changed handling of EOF.  readline () returns
139          (char *)EOF or consed string.  The EOF character is read from the
140          tty, or if the tty doesn't have one, defaults to C-d.
141
142         * readline.c: Added support for event driven programs.
143           rl_event_hook is the address of a function you want called
144           while Readline is waiting for input.
145
146         * readline.c: Cleanup time.  Functions without type declarations
147           do not use return with a value.
148
149         * history.c: history_expand () has new variable which is the
150           characters to ignore immediately following history_expansion_char.
151
152 Sun Jul 16 08:14:00 1989  Brian Fox  (bfox at aurel)
153
154         * rl_prep_terminal ()
155           BSD version turns off C-s, C-q, C-y, C-v.
156
157         * readline.c -- rl_prep_terminal ()
158           SYSV version hacks readline_echoing_p.
159           BSD version turns on passing of the 8th bit for the duration
160           of reading the line.
161
162 Tue Jul 11 06:25:01 1989  Brian Fox  (bfox at aurel)
163
164         * readline.c: new variable rl_tilde_expander.
165           If non-null, this contains the address of a function to call if
166           the standard meaning for expanding a tilde fails.  The function is
167           called with the text sans tilde (as in "foo"), and returns a
168           malloc()'ed string which is the expansion, or a NULL pointer if
169           there is no expansion. 
170
171         * readline.h - new file chardefs.h
172           Separates things that only readline.c needs from the standard
173           header file publishing interesting things about readline.
174
175         * readline.c:
176           readline_default_bindings () now looks at terminal chararacters
177           and binds those as well.
178
179 Wed Jun 28 20:20:51 1989  Brian Fox  (bfox at aurel)
180
181         * Made readline and history into independent libraries.
182