From 1ae6af28d94d32429bd6f19b61aeb49cdca5d246 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sat, 11 Sep 1999 13:53:24 +0000 Subject: [PATCH] * backtrace.c (display_frame_expr): Don't print a newline. (display_frame): Print the newline here instead. --- libguile/backtrace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/backtrace.c b/libguile/backtrace.c index 7e07a1317..14270963c 100644 --- a/libguile/backtrace.c +++ b/libguile/backtrace.c @@ -303,7 +303,6 @@ display_frame_expr (hdr, exp, tlr, indentation, sport, port, pstate) } else scm_iprin1 (exp, port, pstate); - scm_putc ('\n', port); } static void display_application SCM_P ((SCM frame, int indentation, SCM sport, SCM port, scm_print_state *pstate)); @@ -413,6 +412,7 @@ display_frame (frame, nfield, indentation, sport, port, pstate) port, pstate); } + scm_putc ('\n', port); /* Announce missing frames? */ if (SCM_BACKWARDS_P && SCM_FRAME_OVERFLOW_P (frame))