summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-02-24 10:06:34 -0700
committerKarl Williamson <khw@cpan.org>2016-02-27 18:04:04 -0700
commitacb2202e0b234a5f6166a7379a38128ab1e049e5 (patch)
tree1c43a16f2bac87bd51e6ebc430403a6d1f085c3a /proto.h
parent96a7241d0b3ad675d2079fed53bcb62f43f8b39e (diff)
downloadperl-acb2202e0b234a5f6166a7379a38128ab1e049e5.tar.gz
regcomp.c: Change variable names, white-space
A future commit will make more sense if these names are changed. This reindents some code so that it doesn't overflow 79 columns
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 100a111ad9..2852f6ff1e 100644
--- a/proto.h
+++ b/proto.h
@@ -4841,7 +4841,7 @@ STATIC regnode* S_regatom(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth
STATIC regnode* S_regbranch(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, I32 first, U32 depth);
#define PERL_ARGS_ASSERT_REGBRANCH \
assert(pRExC_state); assert(flagp)
-STATIC regnode* S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth, const bool stop_at_1, bool allow_multi_fold, const bool silence_non_portable, const bool strict, bool optimizable, SV** ret_invlist, AV** posix_warnings);
+STATIC regnode* S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth, const bool stop_at_1, bool allow_multi_fold, const bool silence_non_portable, const bool strict, bool optimizable, SV** ret_invlist, AV** return_posix_warnings);
#define PERL_ARGS_ASSERT_REGCLASS \
assert(pRExC_state); assert(flagp)
STATIC unsigned int S_regex_set_precedence(const U8 my_operator)