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/goops.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/goops.c')
-rw-r--r-- | libguile/goops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/goops.c b/libguile/goops.c index bf6c03a51..cc4c98e04 100644 --- a/libguile/goops.c +++ b/libguile/goops.c @@ -335,7 +335,7 @@ scm_i_get_keyword (SCM key, SCM l, long len, SCM default_value, const char *subr if (!SCM_KEYWORDP (obj)) scm_misc_error (subr, "bad keyword: ~S", scm_list_1 (obj)); - else if (SCM_EQ_P (obj, key)) + else if (scm_is_eq (obj, key)) return SCM_CADR (l); else l = SCM_CDDR (l); @@ -1212,7 +1212,7 @@ test_slot_existence (SCM class SCM_UNUSED, SCM obj, SCM slot_name) register SCM l; for (l = SCM_ACCESSORS_OF (obj); !SCM_NULLP (l); l = SCM_CDR (l)) - if (SCM_EQ_P (SCM_CAAR (l), slot_name)) + if (scm_is_eq (SCM_CAAR (l), slot_name)) return SCM_BOOL_T; return SCM_BOOL_F; |