regcomp.c: White-space only
authorKarl Williamson <public@khwilliamson.com>
Mon, 19 Aug 2013 18:01:37 +0000 (12:01 -0600)
committerKarl Williamson <public@khwilliamson.com>
Thu, 29 Aug 2013 16:56:58 +0000 (10:56 -0600)
Reflow comment to fit in 79 columns

regcomp.c

index 8748f02..fd8f208 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -10987,16 +10987,18 @@ tryagain:
                         goto loopdone;
                     case '1': case '2': case '3':case '4':
                    case '5': case '6': case '7':
-                        /* When we parse backslash escapes there is ambiguity between
-                         * backreferences and octal escapes. Any escape from \1 - \9 is
-                         * a backreference, any multi-digit escape which does not start with
-                         * 0 and which when evaluated as decimal could refer to an already
-                         * parsed capture buffer is a backslash. Anything else is octal.
+                        /* When we parse backslash escapes there is ambiguity
+                         * between backreferences and octal escapes. Any escape
+                         * from \1 - \9 is a backreference, any multi-digit
+                         * escape which does not start with 0 and which when
+                         * evaluated as decimal could refer to an already
+                         * parsed capture buffer is a backslash. Anything else
+                         * is octal.
                          *
-                         * Note this implies that \118 could be interpreted as 118 OR as
-                         * "\11" . "8" depending on whether there were 118 capture buffers
-                         * defined already in the pattern.
-                         */
+                         * Note this implies that \118 could be interpreted as
+                         * 118 OR as "\11" . "8" depending on whether there
+                         * were 118 capture buffers defined already in the
+                         * pattern.  */
                         if ( !isDIGIT(p[1]) || atoi(p) <= RExC_npar )
                         {  /* Not to be treated as an octal constant, go
                                    find backref */