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