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:
parent
db62436ece
commit
0b5f3f34c2
5 changed files with 41 additions and 50 deletions
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue