diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-06-05 11:39:46 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-06-05 11:39:46 +0000 |
commit | 9a09deb1c31529e4710dec3badc860ca1cd466af (patch) | |
tree | ada8db2350a0114a0d8d17eca63050c8d2620526 /libguile/procs.h | |
parent | 1f496b05af0b75a9ba5b4ee0e7f59b6fa4607a27 (diff) | |
download | guile-9a09deb1c31529e4710dec3badc860ca1cd466af.tar.gz |
* Removed SCM_TRUE_P since it may get confused with !SCM_FALSEP.
Diffstat (limited to 'libguile/procs.h')
-rw-r--r-- | libguile/procs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/procs.h b/libguile/procs.h index 0258664e7..eb0b06dd9 100644 --- a/libguile/procs.h +++ b/libguile/procs.h @@ -91,7 +91,7 @@ typedef struct + scm_tc3_closure)) #define SCM_ENV(x) SCM_CDR(x) #define SCM_SETENV(x, e) SCM_SETCDR (x, e) -#define SCM_TOP_LEVEL(SCM_ENV) (SCM_NULLP (SCM_ENV) || (SCM_TRUE_P (scm_procedure_p (SCM_CAR (SCM_ENV))))) +#define SCM_TOP_LEVEL(ENV) (SCM_NULLP (ENV) || (SCM_EQ_P (scm_procedure_p (SCM_CAR (ENV)), SCM_BOOL_T))) /* Procedure-with-setter |