regcomp.c: White-space only
authorKarl Williamson <public@khwilliamson.com>
Fri, 6 Dec 2013 22:26:53 +0000 (15:26 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sat, 7 Dec 2013 16:57:55 +0000 (09:57 -0700)
Vertically stack ? : ternary operators for better visibility

regcomp.c

index 0239361..ddc71ce 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -9335,9 +9335,9 @@ S_reg(pTHX_ RExC_state_t *pRExC_state, I32 paren, I32 *flagp,U32 depth)
             case '\'':          /* (?'...') */
                    name_start= RExC_parse;
                    svname = reg_scan_name(pRExC_state,
-                       SIZE_ONLY ?  /* reverse test from the others */
-                       REG_RSN_RETURN_NAME : 
-                       REG_RSN_RETURN_NULL);
+                        SIZE_ONLY    /* reverse test from the others */
+                        ? REG_RSN_RETURN_NAME
+                        : REG_RSN_RETURN_NULL);
                    if (RExC_parse == name_start || *RExC_parse != paren)
                        vFAIL2("Sequence (?%c... not terminated",
                            paren=='>' ? '<' : paren);