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

* *.[ch]: Replace SCM_VALIDATE_INT w/ SCM_VALIDATE_INUM for

better consistency with the names of other SCM_VALIDATE_ macros
and better conformance to guile naming policy.
This commit is contained in:
Greg J. Badros 2000-01-05 19:00:03 +00:00
parent f5421cfc2a
commit 47c6b75ea9
27 changed files with 172 additions and 172 deletions

View file

@ -284,8 +284,8 @@ GUILE_PROC (scm_make_iloc, "make-iloc", 3, 0, 0,
"")
#define FUNC_NAME s_scm_make_iloc
{
SCM_VALIDATE_INT(1,frame);
SCM_VALIDATE_INT(2,binding);
SCM_VALIDATE_INUM(1,frame);
SCM_VALIDATE_INUM(2,binding);
return (SCM_ILOC00
+ SCM_IFRINC * SCM_INUM (frame)
+ (SCM_NFALSEP (cdrp) ? SCM_ICDR : 0)