]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/regex-emacs.c (mutually_exclusive_aux) [ENABLE_CHECKING]: Fix if
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 21 Sep 2023 15:58:44 +0000 (11:58 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 21 Sep 2023 15:58:44 +0000 (11:58 -0400)
src/regex-emacs.c

index 06befe1b189d75fc31d10d00f40676b777b765ce..cf7b704ee95b53b5dda06cd728965fcda8164b42 100644 (file)
@@ -3793,11 +3793,12 @@ mutually_exclusive_aux (struct re_pattern_buffer *bufp, re_char *p1,
     return true;          /* Presumably already checked elsewhere.  */
   eassert (loop_entry && p2 >= loop_entry);
   if (p2 < loop_entry || (loop_exit && p2 > loop_exit))
-    /* The assumptions about the shape of the code aren't true :-(  */
+    /* The assumptions about the shape of the code aren't true :-(  */
 #ifdef ENABLE_CHECKING
-    error ("Broken assumption in regex.c:mutually_exclusive_aux");
+      error ("Broken assumption in regex.c:mutually_exclusive_aux");
 #endif
-    return false;
+      return false;
+    }
 
   /* Skip over open/close-group commands.
      If what follows this loop is a ...+ construct,