On Tue, Mar 25, 2025 at 11:32:12PM +0000, Johannes Schindelin via GitGitGadget wrote: > diff --git a/compat/regex/regex_internal.c b/compat/regex/regex_internal.c > index ec5cc5d2dd1..7672583bf7e 100644 > --- a/compat/regex/regex_internal.c > +++ b/compat/regex/regex_internal.c > @@ -1231,9 +1231,10 @@ re_node_set_merge (re_node_set *dest, const re_node_set *src) > for (sbase = dest->nelem + 2 * src->nelem, > is = src->nelem - 1, id = dest->nelem - 1; is >= 0 && id >= 0; ) > { > - if (dest->elems[id] == src->elems[is]) > - is--, id--; > - else if (dest->elems[id] < src->elems[is]) > + if (dest->elems[id] == src->elems[is]) { > + is--; > + id--; > + } else if (dest->elems[id] < src->elems[is]) Should the other arms of this conditional have matching curly-braces? Thanks, Taylor