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