1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

* backtrace.c (scm_backtrace): Split message string across

newlines properly.  GCC is more tolerant of this than other
compilers.
This commit is contained in:
Jim Blandy 1997-04-16 22:52:47 +00:00
parent 6dad9cd3c6
commit 23f53cd3e2

View file

@ -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);
}