mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 01:00:20 +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:
parent
f5421cfc2a
commit
47c6b75ea9
27 changed files with 172 additions and 172 deletions
|
@ -552,7 +552,7 @@ GUILE_PROC (scm_stack_ref, "stack-ref", 2, 0, 0,
|
|||
#define FUNC_NAME s_scm_stack_ref
|
||||
{
|
||||
SCM_VALIDATE_STACK(1,stack);
|
||||
SCM_VALIDATE_INT(2,i);
|
||||
SCM_VALIDATE_INUM(2,i);
|
||||
SCM_ASSERT_RANGE (1,i,
|
||||
SCM_INUM (i) >= 0 &&
|
||||
SCM_INUM (i) < SCM_STACK_LENGTH (stack));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue