From 7f7274faab9ee012b98ba71d9082fa1997ef46aa Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Thu, 1 Sep 2022 16:39:24 +0200 Subject: [PATCH] regcomp.h - put STMT_START on its own line and lined up with STMT_END --- regcomp.h | 9 ++++++--- 1 file 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.