diff --git a/guile-readline/ChangeLog b/guile-readline/ChangeLog index 3f7fd5fc6..245b56c65 100644 --- a/guile-readline/ChangeLog +++ b/guile-readline/ChangeLog @@ -1,3 +1,7 @@ +1999-09-11 Mikael Djurfeldt + + * readline.scm (activate-readline): Set (using-readline?). + 1999-09-11 Jim Blandy * Makefile.am (DISTCLEANFILES): Get rid of .x files. diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index dfd6cbcfe..7e7f446a7 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,22 @@ +1999-09-11 Mikael Djurfeldt + +* * boot-9.scm (using-readline?): New procedure: Returns #t if + readline is used by the repl run by this thread. + (handle-system-error): Print "Backtrace:" before backtrace since + this is no longer done by display-backtrace. + + * debug.scm (frame-number->index): Optionally take stack as + argument. + + * debugger.scm: Use the frame number abstraction which allows for + both forward and backward views of the stack + (write-frame-index-short, write-frame-index-long): + Use selector `frame-number'; + (select-frame-absolute): Use frame-number->index. + ("backtrace"): Use builtin backtrace printing. + Use (ice-9 debug). + Use readline conditionally. + 1999-09-11 Jim Blandy * regex.scm (fold-matches, list-matches): New functions. @@ -40,7 +59,6 @@ * * debugger.scm: New file: Initial version of the Guile debugger written by Chris Hanson. (The debugger isn't finished, but is included in Guile anyway since it is already quite useful.) - Use readline conditionally. * * boot-9.scm (top-repl): Use (ice-9 debug) (ice-9 debugger) (ice-9 session) (ice-9 threads) (ice-9 regex) from guile-user only if diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 828e7b49c..e95c321e0 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -16,6 +16,8 @@ * backtrace.c (display_frame_expr): Don't print a newline. (display_frame): Print the newline here instead. + (display_backtrace_body): Don't print "Backtrace:". + (scm_backtrace): Print "Backtrace:" here instead. 1999-09-09 Mikael Djurfeldt