summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-01 16:39:24 +0200
committerYves Orton <demerphq@gmail.com>2022-09-07 09:02:11 +0200
commit7f7274faab9ee012b98ba71d9082fa1997ef46aa (patch)
treefa9525686322790fc39d389043b12d1afe7699f8 /regcomp.h
parentffd0ba0cbb85726b91047c008ab972dd29cede2c (diff)
downloadperl-7f7274faab9ee012b98ba71d9082fa1997ef46aa.tar.gz
regcomp.h - put STMT_START on its own line and lined up with STMT_END
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/regcomp.h b/regcomp.h
index 0f71fd3bfe..861adde893 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -305,9 +305,12 @@ struct regnode_ssc {
* to 12 regnode units on 32-bit systems, (hence the minimum this can be (if
* not 0) is 11 there. Even if things get tightly packed on a 64-bit system,
* it still would be more than 1. */
-#define set_ANYOF_SYNTHETIC(n) STMT_START{ OP(n) = ANYOF; \
- NEXT_OFF(n) = 1; \
- } STMT_END
+#define set_ANYOF_SYNTHETIC(n) \
+ STMT_START{ \
+ OP(n) = ANYOF; \
+ NEXT_OFF(n) = 1; \
+ } STMT_END
+
#define is_ANYOF_SYNTHETIC(n) (REGNODE_TYPE(OP(n)) == ANYOF && NEXT_OFF(n) == 1)
/* XXX fix this description.