1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 21:10:27 +02:00

* options.c, objects.c, keywords.c, gc.c: Some redundant SCM_NIMP

removals from Dirk Hermann.

* alist.c: Rename formals to match the parameter names in the
documentation, updates to documentation.  Thanks Dirk Hermann!
This commit is contained in:
Greg J. Badros 2000-01-04 22:23:42 +00:00
parent db62436ece
commit 0b5f3f34c2
5 changed files with 41 additions and 50 deletions

View file

@ -373,8 +373,7 @@ GUILE_PROC (scm_operator_p, "operator?", 1, 0, 0,
"")
#define FUNC_NAME s_scm_operator_p
{
return SCM_BOOL(SCM_NIMP (obj)
&& SCM_STRUCTP (obj)
return SCM_BOOL(SCM_STRUCTP (obj)
&& SCM_I_OPERATORP (obj)
&& !SCM_I_ENTITYP (obj));
}