Fri Dec 6 23:23:14 1991 K. Richard Pixley (rich at rtl.cygnus.com)
[external/binutils.git] / readline / ChangeLog
1 Fri Dec  6 23:23:14 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
2
3         * Makefile.in: remove spaces following hyphens, bsd make can't
4           cope. added clean-info.  added standards.text support.  Don't
5           know how to make info anymore.
6
7         * configure.in: commontargets is no longer a recognized hook, so
8           remove it.  new subdir called doc.
9
10 Thu Dec  5 22:46:10 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
11
12         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
13           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
14           and mandir now keyed off datadir by default.
15
16 Fri Nov 22 09:02:32 1991  John Gilmore  (gnu at cygnus.com)
17
18         * sysdep-obsd.h:  Rename from sysdep-newsos.h.
19         * configure.in:  Use sysdep-obsd for Mach as well as NEWs.
20
21         * sysdep-norm.h, sysdep-aix.h:  Add <sys/types.h>, which POSIX
22         requires to make <dirent.h> work.  Improve Sun alloca decl.
23
24 Thu Nov 21 18:48:08 1991  John Gilmore  (gnu at cygnus.com)
25
26         * Makefile.in:  Clean up ../glob/tilde.c -> tilde.o path.
27         Clean up makefile a bit in general.
28
29 Thu Nov 21 14:40:29 1991  Stu Grossman  (grossman at cygnus.com)
30
31         * configure.in, config/mh-svr4:  Make SVR4 work.
32
33         * readline.c:  Move config stuff to sysdep.h, use typedef dirent
34         consistently, remove refs to d_namlen (& D_NAMLEN) to improve
35         portability.  Also, update copyright notice.
36         readline.h:  remove config stuff that I added erroneously in the
37         first place.
38
39         * emacs_keymap.c, funmap.c, history.c, keymaps.c, vi_keymap.c,
40         vi_mode.c:  move config stuff to sysdep.h, update copyright notices.
41
42 Tue Nov 19 15:02:13 1991  Stu Grossman  (grossman at cygnus.com)
43
44         * history.c:  #include "sysdep.h".
45
46 Tue Nov 19 10:49:17 1991  Fred Fish  (fnf at cygnus.com)
47
48         * Makefile.in, config/hm-sysv, config/hm-sco:  Change SYSV to
49         USG to match current usage.
50
51         * readline.c:  Add USGr4 to list of defined things to check for
52         to use <dirent.h> style directory access.
53
54         * config/hm-svr4:  New file for System V Release 4 (USGr4).
55
56 Mon Nov 18 23:59:52 1991  Stu Grossman  (grossman at cygnus.com)
57
58         * readline.c (filename_completion_function):  use struct dirent
59         instead of struct direct.
60
61 Fri Nov  1 07:02:13 1991  Brian Fox  (bfox at gnuwest.fsf.org)
62
63         * readline.c (rl_translate_keyseq) Make C-? translate to RUBOUT
64         unconditionally.
65
66 Mon Oct 28 11:34:52 1991  Brian Fox  (bfox at gnuwest.fsf.org)
67
68         * readline.c; Use Posix directory routines and macros.
69
70         * funmap.c; Add entry for call-last-kbd-macro.
71
72         * readline.c (rl_prep_term); Use system EOF character on POSIX
73         systems also.
74
75 Thu Oct  3 16:19:53 1991  Brian Fox  (bfox at gnuwest.fsf.org)
76
77         * readline.c; Make a distinction between having a TERMIOS tty
78         driver, and having POSIX signal handling.  You might one without
79         the other.  New defines used HAVE_POSIX_SIGNALS, and
80         TERMIOS_TTY_DRIVER.
81
82 Tue Jul 30 22:37:26 1991  Brian Fox  (bfox at gnuwest.fsf.org)
83
84         * readline.c: rl_getc () If a call to read () returns without an
85         error, but with zero characters, the file is empty, so return EOF.
86
87 Thu Jul 11 20:58:38 1991  Brian Fox  (bfox at gnuwest.fsf.org)
88
89         * readline.c: (rl_get_next_history, rl_get_previous_history)
90         Reallocate the buffer space if the line being moved to is longer
91         the the current space allocated.  Amazing that no one has found
92         this bug until now.
93
94 Sun Jul  7 02:37:05 1991  Brian Fox  (bfox at gnuwest.fsf.org)
95
96         * readline.c:(rl_parse_and_bind) Allow leading whitespace.
97           Make sure TERMIO and TERMIOS systems treat CR and NL
98           disctinctly.
99         
100 Tue Jun 25 04:09:27 1991  Brian Fox  (bfox at gnuwest.fsf.org)
101
102         * readline.c: Rework parsing conditionals to pay attention to the
103         prior states of the conditional stack.  This makes $if statements
104         work correctly.
105
106 Mon Jun 24 20:45:59 1991  Brian Fox  (bfox at gnuwest.fsf.org)
107
108         * readline.c: support for displaying key binding information
109         includes the functions rl_list_funmap_names (),
110         invoking_keyseqs_in_map (), rl_invoking_keyseqs (),
111         rl_dump_functions (), and rl_function_dumper ().
112
113         funmap.c: support for same includes rl_funmap_names ().
114
115         readline.c, funmap.c: no longer define STATIC_MALLOC.  However,
116         update both version of xrealloc () to handle a null pointer.
117
118 Thu Apr 25 12:03:49 1991  Brian Fox  (bfox at gnuwest.fsf.org)
119
120         * vi_mode.c (rl_vi_fword, fWord, etc.  All functions use
121         the macro `isident()'.  Fixed movement bug which prevents
122         continious movement through the text.
123
124 Fri Jul 27 16:47:01 1990  Brian Fox  (bfox at gnuwest.fsf.org)
125
126         * readline.c (parser_if) Allow "$if term=foo" construct.
127
128 Wed May 23 16:10:33 1990  Brian Fox  (bfox at gnuwest.fsf.org)
129
130         * readline.c (rl_dispatch) Correctly remember the last command
131         executed.  Fixed typo in username_completion_function ().
132
133 Mon Apr  9 19:55:48 1990  Brian Fox  (bfox at gnuwest.fsf.org)
134
135         * readline.c: username_completion_function (); For text passed in
136         with a leading `~', remember that this could be a filename (after
137         it is completed).
138
139 Thu Apr  5 13:44:24 1990  Brian Fox  (bfox at gnuwest.fsf.org)
140
141         * readline.c: rl_search_history (): Correctly handle case of an
142         unfound search string, but a graceful exit (as with ESC).
143
144         * readline.c: rl_restart_output ();  The Apollo passes the address
145         of the file descriptor to TIOCSTART, not the descriptor itself.
146
147 Tue Mar 20 05:38:55 1990  Brian Fox  (bfox at gnuwest.fsf.org)
148
149         * readline.c: rl_complete (); second call in a row causes possible
150         completions to be listed.
151
152         * readline.c: rl_redisplay (), added prompt_this_line variable
153         which is the first character character following \n in prompt.
154
155 Sun Mar 11 04:32:03 1990  Brian Fox  (bfox at gnuwest.fsf.org)
156
157         * Signals are now supposedly handled inside of SYSV compilation.
158
159 Wed Jan 17 19:24:09 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
160
161         * history.c: history_expand (); fixed overwriting memory error,
162         added needed argument to call to get_history_event ().
163
164 Thu Jan 11 10:54:04 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
165
166         * readline.c: added mark_modified_lines to control the
167         display of an asterisk on modified history lines.  Also
168         added a user variable called mark-modified-lines to the
169         `set' command.
170
171 Thu Jan  4 10:38:05 1990  Brian Fox  (bfox at sbphy.ucsb.edu)
172
173         * readline.c: start_insert ().  Only use IC if we don't have an im
174         capability.
175
176 Fri Sep  8 09:00:45 1989  Brian Fox  (bfox at aurel)
177
178         * readline.c: rl_prep_terminal ().  Only turn on 8th bit
179           as meta-bit iff the terminal is not using parity.
180
181 Sun Sep  3 08:57:40 1989  Brian Fox  (bfox at aurel)
182
183         * readline.c: start_insert ().  Uses multiple
184           insertion call in cases where that makes sense.
185
186           rl_insert ().  Read type-ahead buffer for additional
187           keys that are bound to rl_insert, and insert them
188           all at once.  Make insertion of single keys given
189           with an argument much more efficient.
190
191 Tue Aug  8 18:13:57 1989  Brian Fox  (bfox at aurel)
192
193         * readline.c: Changed handling of EOF.  readline () returns
194          (char *)EOF or consed string.  The EOF character is read from the
195          tty, or if the tty doesn't have one, defaults to C-d.
196
197         * readline.c: Added support for event driven programs.
198           rl_event_hook is the address of a function you want called
199           while Readline is waiting for input.
200
201         * readline.c: Cleanup time.  Functions without type declarations
202           do not use return with a value.
203
204         * history.c: history_expand () has new variable which is the
205           characters to ignore immediately following history_expansion_char.
206
207 Sun Jul 16 08:14:00 1989  Brian Fox  (bfox at aurel)
208
209         * rl_prep_terminal ()
210           BSD version turns off C-s, C-q, C-y, C-v.
211
212         * readline.c -- rl_prep_terminal ()
213           SYSV version hacks readline_echoing_p.
214           BSD version turns on passing of the 8th bit for the duration
215           of reading the line.
216
217 Tue Jul 11 06:25:01 1989  Brian Fox  (bfox at aurel)
218
219         * readline.c: new variable rl_tilde_expander.
220           If non-null, this contains the address of a function to call if
221           the standard meaning for expanding a tilde fails.  The function is
222           called with the text sans tilde (as in "foo"), and returns a
223           malloc()'ed string which is the expansion, or a NULL pointer if
224           there is no expansion. 
225
226         * readline.h - new file chardefs.h
227           Separates things that only readline.c needs from the standard
228           header file publishing interesting things about readline.
229
230         * readline.c:
231           readline_default_bindings () now looks at terminal chararacters
232           and binds those as well.
233
234 Wed Jun 28 20:20:51 1989  Brian Fox  (bfox at aurel)
235
236         * Made readline and history into independent libraries.
237