diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-16 20:48:05 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 1999-12-16 20:48:05 +0000 |
commit | 0c95b57d77efbe82bb0ade78df5d78d6d0f2a641 (patch) | |
tree | 4cd49dc6b94effdaed1476f397dc7c82d371b008 /libguile/feature.c | |
parent | 9c24ff3e6c28e7b9adc6b386ea0033e8a947c40e (diff) | |
download | guile-0c95b57d77efbe82bb0ade78df5d78d6d0f2a641.tar.gz |
* coop-threads.c: Remove K&R function headers.
* scm_validate.h: Added SCM_VALIDATE_THREAD.
* *.c: Remove SCM_NIMP(X) when it is an extraneous pre-test given
that SCM_FOOP macros all now include SCM_NIMP in their expansion.
This simplifies lots of code, making it far more readable.
Diffstat (limited to 'libguile/feature.c')
-rw-r--r-- | libguile/feature.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index efff9d789..f8bc1f834 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -114,7 +114,7 @@ static SCM make_hook (SCM name, SCM n_args, const char *subr) { int n; - SCM_ASSERT (SCM_FALSEP (name) || (SCM_NIMP (name) && SCM_SYMBOLP (name)), + SCM_ASSERT (SCM_FALSEP (name) || (SCM_SYMBOLP (name)), name, SCM_ARG1, subr); @@ -204,7 +204,7 @@ GUILE_PROC (scm_hook_p, "hook?", 1, 0, 0, "") #define FUNC_NAME s_scm_hook_p { - return SCM_BOOL(SCM_NIMP (x) && SCM_HOOKP (x)); + return SCM_BOOL(SCM_HOOKP (x)); } #undef FUNC_NAME |