diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-07-27 15:41:49 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-07-27 15:41:49 +0000 |
commit | bc36d0502b9b2ac7e43ded2e1fbeed2f1499bb1d (patch) | |
tree | dafd9e49525c8b5e1ccee4f39b5b720522a93dc3 /libguile/options.c | |
parent | c82f8ed66ca55da796cb6289f380aaed2e5e34bb (diff) | |
download | guile-bc36d0502b9b2ac7e43ded2e1fbeed2f1499bb1d.tar.gz |
* tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it into
deprecated.h. Replaced all uses with scm_is_eq.
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 41cadc7b5..4c53611a3 100644 --- a/libguile/options.c +++ b/libguile/options.c @@ -178,7 +178,7 @@ change_option_setting (SCM args, scm_t_option options[], unsigned int n, const c for (i = 0; i != n && !found; ++i) { - if (SCM_EQ_P (name, SCM_PACK (options[i].name))) + if (scm_is_eq (name, SCM_PACK (options[i].name))) { switch (options[i].type) { |