From: Marius Vollmer Date: Tue, 22 May 2001 22:46:14 +0000 (+0000) Subject: (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/a0f3e7475266b932b9a5128042da8d0909f85692 (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of SCM_VARIABLE_INIT since that it what it used to be. --- 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) \