diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:25:37 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:25:37 +0000 |
commit | 3b3b36ddb7dfbd5094abee360c253c8f1216dcdd (patch) | |
tree | be6f18ee784818de032ac23e77470b67e260ffef /libguile/regex-posix.c | |
parent | cbaee92a8b6d8abba6bd236d089a7e6c3cf471b3 (diff) | |
download | guile-3b3b36ddb7dfbd5094abee360c253c8f1216dcdd.tar.gz |
* *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
macros and SCM_DEFINE macros to match GNU coding standards.
Diffstat (limited to 'libguile/regex-posix.c')
-rw-r--r-- | libguile/regex-posix.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/regex-posix.c b/libguile/regex-posix.c index cce256580..40f7f3371 100644 --- a/libguile/regex-posix.c +++ b/libguile/regex-posix.c @@ -189,7 +189,7 @@ the earlier one. regex_t *rx; int status, cflags; - SCM_VALIDATE_ROSTRING(1,pat); + SCM_VALIDATE_ROSTRING (1,pat); SCM_COERCE_SUBSTR (pat); /* Examine list of regexp flags. If REG_BASIC is supplied, then @@ -235,13 +235,13 @@ the results of the match, or @code{#f} if no match could be found.") regmatch_t *matches; SCM mvec = SCM_BOOL_F; - SCM_VALIDATE_RGXP(1,rx); - SCM_VALIDATE_ROSTRING(2,str); - SCM_VALIDATE_INUM_DEF_COPY(3,start,0,offset); + SCM_VALIDATE_RGXP (1,rx); + SCM_VALIDATE_ROSTRING (2,str); + 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_INUM(4,flags); + SCM_VALIDATE_INUM (4,flags); SCM_COERCE_SUBSTR (str); /* re_nsub doesn't account for the `subexpression' representing the |