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