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