From 1afff620541041a7b680a85fee6d641092091b7c Mon Sep 17 00:00:00 2001 From: Keisuke Nishida Date: Thu, 28 Jun 2001 01:11:59 +0000 Subject: * list.h (scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5, scm_list_n): New functions. (SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5, SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify): Deprecated. (lots of files): Use the new functions. * goops.c (CALL_GF1, CALL_GF2, CALL_GF3, CALL_GF4): Use scm_call_N. * strings.c: #include "libguile/deprecation.h". --- libguile/variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libguile/variable.c') diff --git a/libguile/variable.c b/libguile/variable.c index 2a6da8c89..7e61680eb 100644 --- a/libguile/variable.c +++ b/libguile/variable.c @@ -130,7 +130,7 @@ SCM_DEFINE (scm_variable_ref, "variable-ref", 1, 0, 0, SCM_VALIDATE_VARIABLE (1, var); val = SCM_VARIABLE_REF (var); if (val == SCM_UNDEFINED) - SCM_MISC_ERROR ("variable is unbound: ~S", SCM_LIST1 (var)); + SCM_MISC_ERROR ("variable is unbound: ~S", scm_list_1 (var)); return val; } #undef FUNC_NAME -- cgit v1.2.3