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