From b1edcd363e035e65dfebfce37b1e53dcc71fb46a Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 10 Jul 1997 05:25:44 +0000 Subject: [PATCH] * error.c (scm_wta): Pass SCM_EOL to scm_misc_error as the list of arguments for formatting the error message, not SCM_BOOL_F. I think this is left over from the (eq? '() #f) days. --- libguile/error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/error.c b/libguile/error.c index a11caba22..1b2699de4 100644 --- a/libguile/error.c +++ b/libguile/error.c @@ -249,7 +249,7 @@ scm_wta (arg, pos, s_subr) if ((~0x1fL) & (long) pos) { /* error string supplied. */ - scm_misc_error (s_subr, pos, SCM_BOOL_F); + scm_misc_error (s_subr, pos, SCM_EOL); } else { @@ -278,7 +278,7 @@ scm_wta (arg, pos, s_subr) scm_memory_error (s_subr); default: /* this shouldn't happen. */ - scm_misc_error (s_subr, "Unknown error", SCM_BOOL_F); + scm_misc_error (s_subr, "Unknown error", SCM_EOL); } } return SCM_UNSPECIFIED;