mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 23:50:19 +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
|
@ -237,11 +237,11 @@ the results of the match, or @code{#f} if no match could be found.")
|
|||
|
||||
SCM_VALIDATE_RGXP(1,rx);
|
||||
SCM_VALIDATE_ROSTRING(2,str);
|
||||
SCM_VALIDATE_INT_DEF_COPY(3,start,0,offset);
|
||||
SCM_VALIDATE_INUM_DEF_COPY(3,start,0,offset);
|
||||
SCM_ASSERT_RANGE (3,start,offset >= 0 && (unsigned) offset <= SCM_LENGTH (str));
|
||||
if (SCM_UNBNDP (flags))
|
||||
flags = SCM_INUM0;
|
||||
SCM_VALIDATE_INT(4,flags);
|
||||
SCM_VALIDATE_INUM(4,flags);
|
||||
SCM_COERCE_SUBSTR (str);
|
||||
|
||||
/* re_nsub doesn't account for the `subexpression' representing the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue