* configure.in: check for hstrerror.
[bpt/guile.git] / guile-readline / ChangeLog
CommitLineData
5c11cc9d
GH
11999-11-18 Gary Houston <ghouston@freewire.co.uk>
2
3 * readline.c (scm_init_readline): set rl_readline_name to Guile,
4 to allow conditionals in .inputrc.
5
0c1221ab
JB
61999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
7
0cbedb5b
JB
8 * Makefile.in, configure, aclocal.m4: Deleted from CVS repository.
9 Run the autogen.sh script to create generated files like these.
e8ff4648 10 * autogen.sh: New script, invoked by the top-level autogen.sh.
0c1221ab 11
fc97c626
JB
121999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
13
14 * configure.in: Call AM_PROG_CC_STDC.
15 * configure, aclocal.m4: Regenerated.
16
8cc9503d
MD
171999-09-16 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
18
19 * Makefile.am (.c.x): Use same rule as in libguile.
20
03ce8ed1
MD
211999-09-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
22
30772a34 23 * readline.h, readline.scm: Updated copyright notices.
03ce8ed1 24
f14d3ff8
MD
251999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
26
27 * readline.scm (activate-readline): Set (using-readline?).
28
49537948
JB
291999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
30
b142c81d
JB
31 * aclocal.m4: Regenerated with newer libtool macros.
32
49537948
JB
33 * Makefile.am (DISTCLEANFILES): Get rid of .x files.
34 * Makefile.in: Regenerated.
35 (Thanks to Keisuke Nishida.)
36
98baa684
MV
371999-09-11 Marius Vollmer <mvo@zagadka.ping.de>
38
39 * readline.scm: Moved from ../ice-9.
40 Dynamically link libguilereadline.so.
41 (readline): Just define in this module, do not overwrite builtin
42 variable. The builtin readline function is now named "%readline",
43 so this works. See below.
44 (activate-readline): New function which contains the readline
45 activation code formerly found in top-repl.
46
47 * readline.c (scm_readline): Export it to Scheme as "%readline".
48
49 * configure.in: Get version from ../GUILE-VERSION and use it for
50 package version.
51
52 * Makefile.am: Do not install and distribute
53 readline-activator.scm. Install and distribute readline.scm
54 instead.
55
56 * aclocal.m4, Makefile.in, configure, libtool: Regenerated, but
57 probably with the wrong version of the tools.
58
2b0cc4cf
MD
591999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
60
61 The following change makes it possible for applications to have
62 their own version of scm_readline.
63 * readline.c, readline.h (rl_cleanup_after_signal,
64 rl_free_line_state): Made global.
65 (scm_readline_init_ports): New function.
66 (scm_readline): Use scm_readline_init_ports.
67 (Thanks to Anders Holst.)
68
69 * Makefile.am: Install guile-readline/readline.h.
70
a343458d
JB
711999-08-20 James Blandy <jimb@mule.m17n.org>
72
73 * Makefile.in, aclocal.m4, configure: Regenerated.
74
6faab786
MD
751999-08-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
76
77 * configure.in (HAVE_RL_GETC_FUNCTION): Modified test to actually
78 use rl_getc_function. Otherwise smart compilers, like gcc,
79 optimize away the reference so that no error occurs in the link
80 phase.
81
9daf8124
MD
821999-08-04 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
83
84 * Makefile.am (INCLUDES): Added -I$(srcdir)/../libguile.
85 (Thanks to Greg Badros.)
86
f29f2933
MD
871999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
88
89 * readline.c (handle_error): Put a cosmetic newline on
90 rl_outstream on error before closing it.
91
92 * configure.in: Changed AC_MSG_ERROR into AC_MSG_WARN in case
93 readline doesn't exist on the system, so that configuration can
94 proceed normally without readline.
95
96 * readline.c: #include "libguile/_scm.h" (so that we get the
97 configuration information) and fix other includes so that they'll
98 work on a system where guile is not yet installed.
99
100 * Makefile.am (BUILT_SOURCES): Added.
101
c374ab69
MV
1021999-07-23 Marius Vollmer <mvo@zagadka.ping.de>
103
104 * Checked everything into CVS.
105
1061999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
107
108 * readline.c (stream_from_fport): New function.
109 (scm_readline): Use it to for the input and output ports. Close
110 the streams after readline returns.
111 (handle_error): Close them also when an error occured.
112
1131999-06-17 Marius Vollmer <mvo@zagadka.ping.de>
114
115 * readline.h, readline.c: Removed exception notice from copyright
116 statement.
117
1181999-05-16 Marius Vollmer <mvo@zagadka.ping.de>
119
120 * Started guile-readline package. Files are copied from old
121 guile-core package and slightly modified.