From a0f3e7475266b932b9a5128042da8d0909f85692 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Tue, 22 May 2001 22:46:14 +0000 Subject: [PATCH] (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of SCM_VARIABLE_INIT since that it what it used to be. --- libguile/snarf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/snarf.h b/libguile/snarf.h index ea1926632..ac7a59baa 100644 --- a/libguile/snarf.h +++ b/libguile/snarf.h @@ -191,7 +191,7 @@ SCM_SNARF_INIT(c_name = scm_permanent_object (scm_c_define (scheme_name, init_va #if (SCM_DEBUG_DEPRECATED == 0) #define SCM_CONST_LONG(c_name, scheme_name,value) \ -SCM_VARIABLE_INIT(c_name, scheme_name, scm_long2num(value)) +SCM_VCELL_INIT(c_name, scheme_name, scm_long2num(value)) #define SCM_VCELL(c_name, scheme_name) \ SCM_SNARF_HERE(static SCM c_name) \