* *.[hc]: add Emacs magic at the end of file, to ensure GNU
[bpt/guile.git] / guile-readline / ChangeLog
CommitLineData
89e00824
ML
12000-03-19 Michael Livshin <mlivshin@bigfoot.com>
2
3 * *.[hc]: add Emacs magic at the end of file, to ensure GNU
4 indentation style.
5
58d80560
MD
62000-03-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
7
8 * readline.c (current_input_getc): Don't pass int values through
9 SCM variables.
7236512e
MD
10 (match_paren): Bugfix: First arg to select is not number of
11 descriptors but the number of the highest descriptor + 1.
58d80560 12
76d94124
GB
13Thu Mar 9 08:00:26 2000 Greg J. Badros <gjb@cs.washington.edu>
14
15 * readline.c: scm_validate.h renamed to validate.h.
16
e6a9f3c4
GB
17Wed Mar 8 10:43:10 2000 Greg J. Badros <gjb@cs.washington.edu>
18
19 * readline.c (match_paren): Use SELECT_TYPE, not fd_set, for type
20 of readset.
21
3a721413
MV
222000-01-25 Marius Vollmer <mvo@zagadka.ping.de>
23
24 * autogen.sh: Call libtoolize. Pass --add-missing option to
25 automake.
26
27 * readline.scm: Only link glue code when the 'readline feature is
28 not already present. Thanks to Clark McGrew.
29
c262d0f1
GB
30Tue Jan 11 17:51:40 2000 Greg J. Badros <gjb@cs.washington.edu>
31
32 * readline.c (scm_init_readline): Drop extra argument to
33 scm_mutex_init as that argument should not exist. I do not know
34 how this escaped detection for so long.
35
b9bb8cab
MD
362000-01-09 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
37
38 * readline.c (match_paren): Changed return type to int (this is
39 the definition in readline 4) and modified code layout according
40 to GNU coding standards.
41
2cc0f8cb
GB
42Wed Jan 5 11:18:01 2000 Greg J. Badros <gjb@cs.washington.edu>
43
44 * readline.c: Whitespace changes -- added space after
45 SCM_VALIDATE_* macros to match GNU coding standards.
46
ca8cd130
GB
47Wed Jan 5 11:02:40 2000 Greg J. Badros <gjb@cs.washington.edu>
48
49 * readline.c: Rename GUILE_PROC to SCM_DEFINE.
50
dceef6be
GB
51Mon Dec 13 13:57:57 1999 Greg J. Badros <gjb@cs.washington.edu>
52
53 * readline.c: Include libguile/scm_validate.h
54
3a596d3c
GB
55Sun Dec 12 19:56:52 1999 Greg J. Badros <gjb@cs.washington.edu>
56
57 * readline.c: Updated to use GUILE_PROC, SCM_VALIDATE, and have
58 (now empty) docstrings.
59
5c11cc9d
GH
601999-11-18 Gary Houston <ghouston@freewire.co.uk>
61
62 * readline.c (scm_init_readline): set rl_readline_name to Guile,
63 to allow conditionals in .inputrc.
64
0c1221ab
JB
651999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
66
0cbedb5b
JB
67 * Makefile.in, configure, aclocal.m4: Deleted from CVS repository.
68 Run the autogen.sh script to create generated files like these.
e8ff4648 69 * autogen.sh: New script, invoked by the top-level autogen.sh.
0c1221ab 70
fc97c626
JB
711999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
72
73 * configure.in: Call AM_PROG_CC_STDC.
74 * configure, aclocal.m4: Regenerated.
75
8cc9503d
MD
761999-09-16 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
77
78 * Makefile.am (.c.x): Use same rule as in libguile.
79
03ce8ed1
MD
801999-09-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
81
30772a34 82 * readline.h, readline.scm: Updated copyright notices.
03ce8ed1 83
f14d3ff8
MD
841999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
85
86 * readline.scm (activate-readline): Set (using-readline?).
87
49537948
JB
881999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
89
b142c81d
JB
90 * aclocal.m4: Regenerated with newer libtool macros.
91
49537948
JB
92 * Makefile.am (DISTCLEANFILES): Get rid of .x files.
93 * Makefile.in: Regenerated.
94 (Thanks to Keisuke Nishida.)
95
98baa684
MV
961999-09-11 Marius Vollmer <mvo@zagadka.ping.de>
97
98 * readline.scm: Moved from ../ice-9.
99 Dynamically link libguilereadline.so.
100 (readline): Just define in this module, do not overwrite builtin
101 variable. The builtin readline function is now named "%readline",
102 so this works. See below.
103 (activate-readline): New function which contains the readline
104 activation code formerly found in top-repl.
105
106 * readline.c (scm_readline): Export it to Scheme as "%readline".
107
108 * configure.in: Get version from ../GUILE-VERSION and use it for
109 package version.
110
111 * Makefile.am: Do not install and distribute
112 readline-activator.scm. Install and distribute readline.scm
113 instead.
114
115 * aclocal.m4, Makefile.in, configure, libtool: Regenerated, but
116 probably with the wrong version of the tools.
117
2b0cc4cf
MD
1181999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
119
120 The following change makes it possible for applications to have
121 their own version of scm_readline.
122 * readline.c, readline.h (rl_cleanup_after_signal,
123 rl_free_line_state): Made global.
124 (scm_readline_init_ports): New function.
125 (scm_readline): Use scm_readline_init_ports.
126 (Thanks to Anders Holst.)
127
128 * Makefile.am: Install guile-readline/readline.h.
129
a343458d
JB
1301999-08-20 James Blandy <jimb@mule.m17n.org>
131
132 * Makefile.in, aclocal.m4, configure: Regenerated.
133
6faab786
MD
1341999-08-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
135
136 * configure.in (HAVE_RL_GETC_FUNCTION): Modified test to actually
137 use rl_getc_function. Otherwise smart compilers, like gcc,
138 optimize away the reference so that no error occurs in the link
139 phase.
140
9daf8124
MD
1411999-08-04 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
142
143 * Makefile.am (INCLUDES): Added -I$(srcdir)/../libguile.
144 (Thanks to Greg Badros.)
145
f29f2933
MD
1461999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
147
148 * readline.c (handle_error): Put a cosmetic newline on
149 rl_outstream on error before closing it.
150
151 * configure.in: Changed AC_MSG_ERROR into AC_MSG_WARN in case
152 readline doesn't exist on the system, so that configuration can
153 proceed normally without readline.
154
155 * readline.c: #include "libguile/_scm.h" (so that we get the
156 configuration information) and fix other includes so that they'll
157 work on a system where guile is not yet installed.
158
159 * Makefile.am (BUILT_SOURCES): Added.
160
c374ab69
MV
1611999-07-23 Marius Vollmer <mvo@zagadka.ping.de>
162
163 * Checked everything into CVS.
164
1651999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
166
167 * readline.c (stream_from_fport): New function.
168 (scm_readline): Use it to for the input and output ports. Close
169 the streams after readline returns.
170 (handle_error): Close them also when an error occured.
171
1721999-06-17 Marius Vollmer <mvo@zagadka.ping.de>
173
174 * readline.h, readline.c: Removed exception notice from copyright
175 statement.
176
1771999-05-16 Marius Vollmer <mvo@zagadka.ping.de>
178
179 * Started guile-readline package. Files are copied from old
180 guile-core package and slightly modified.