diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-23 22:23:56 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-23 22:23:56 +0000 |
commit | 206d3de31e939c895bdbd31ade1909e03b2e1293 (patch) | |
tree | addf62f83e2bff7eaaa279c1cc1ffe9a6bdae8ee /libguile/options.c | |
parent | 445f675cf4439468a1c4b2ea0a8a19a5a5bba402 (diff) | |
download | guile-206d3de31e939c895bdbd31ade1909e03b2e1293.tar.gz |
* Replace SCM_UNPACK_CAR appropriately.
Diffstat (limited to 'libguile/options.c')
-rw-r--r-- | libguile/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/options.c b/libguile/options.c index a727403dc..0242c62ed 100644 --- a/libguile/options.c +++ b/libguile/options.c @@ -185,7 +185,7 @@ scm_options (SCM arg, scm_option options[], int n, const char *s) goto cont; case SCM_OPTION_SCM: new_mode = SCM_CDR (new_mode); - flags[i] = SCM_UNPACK_CAR (new_mode); + flags[i] = SCM_UNPACK (SCM_CAR (new_mode)); goto cont; } #ifndef SCM_RECKLESS |