1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 12:20:20 +02:00

* *.c, scm_validate.h: Use SCM_VALIDATE_NIM, not SCM_VALIDATE_NIMP

(none of the other validate macros have the trailing P).
This commit is contained in:
Greg J. Badros 1999-12-12 18:30:09 +00:00
parent 5bff3127b5
commit 6b5a304f6b
11 changed files with 38 additions and 32 deletions

View file

@ -326,7 +326,7 @@ GUILE_PROC (scm_procedure, "procedure", 1, 0, 0,
"")
#define FUNC_NAME s_scm_procedure
{
SCM_VALIDATE_NIMP(1,proc);
SCM_VALIDATE_NIM (1,proc);
if (SCM_PROCEDURE_WITH_SETTER_P (proc))
return SCM_PROCEDURE (proc);
else if (SCM_STRUCTP (proc))