summaryrefslogtreecommitdiff
path: root/libguile/macros.c
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-23 22:23:56 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-05-23 22:23:56 +0000
commit206d3de31e939c895bdbd31ade1909e03b2e1293 (patch)
treeaddf62f83e2bff7eaaa279c1cc1ffe9a6bdae8ee /libguile/macros.c
parent445f675cf4439468a1c4b2ea0a8a19a5a5bba402 (diff)
downloadguile-206d3de31e939c895bdbd31ade1909e03b2e1293.tar.gz
* Replace SCM_UNPACK_CAR appropriately.
Diffstat (limited to 'libguile/macros.c')
-rw-r--r--libguile/macros.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/macros.c b/libguile/macros.c
index f02090161..00cffcf07 100644
--- a/libguile/macros.c
+++ b/libguile/macros.c
@@ -135,7 +135,7 @@ SCM_DEFINE (scm_macro_type, "macro-type", 1, 0, 0,
{
if (!(SCM_NIMP (m) && SCM_TYP16 (m) == scm_tc16_macro))
return SCM_BOOL_F;
- switch ((int) (SCM_UNPACK_CAR (m) >> 16))
+ switch (SCM_CELL_WORD_0 (m) >> 16)
{
case 0: return scm_sym_syntax;
case 1: return scm_sym_macro;