From 23f53cd3e2e73232a262d2be504b50dbe72704d9 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 16 Apr 1997 22:52:47 +0000 Subject: [PATCH] * backtrace.c (scm_backtrace): Split message string across newlines properly. GCC is more tolerant of this than other compilers. --- libguile/backtrace.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libguile/backtrace.c b/libguile/backtrace.c index f10fc5791..d47375771 100644 --- a/libguile/backtrace.c +++ b/libguile/backtrace.c @@ -484,8 +484,9 @@ scm_backtrace () && !SCM_BACKTRACE_P) { scm_gen_puts (scm_regular_string, - "Type \"(debug-enable 'backtrace)\" if you would like a backtrace -automatically if an error occurs in the future.\n", + "Type \"(debug-enable 'backtrace)\" if you would like " + "a backtrace\n" + "automatically if an error occurs in the future.\n", scm_cur_outp); SCM_SETCDR (scm_has_shown_backtrace_hint_p_var, SCM_BOOL_T); }