diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-01 21:23:09 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-04-01 21:23:09 +0000 |
commit | cf498326837afeb6e45cf9ebda610b9835cc856c (patch) | |
tree | 52c6d8cb17b052299a0dbf829ff1b7e00317e64b /libguile/procs.h | |
parent | 47a4dcc5b477e91537778589d0fe32dd9edc58f0 (diff) | |
download | guile-cf498326837afeb6e45cf9ebda610b9835cc856c.tar.gz |
Some fixes for strict typing.
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 78324e57c..dbd448a58 100644 --- a/libguile/procs.h +++ b/libguile/procs.h @@ -109,7 +109,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_BOOL_T == scm_procedure_p (SCM_CAR (SCM_ENV)))) +#define SCM_TOP_LEVEL(SCM_ENV) (SCM_NULLP (SCM_ENV) || (SCM_TRUE_P (scm_procedure_p (SCM_CAR (SCM_ENV))))) /* Procedure-with-setter |