re_intuit_start(): refactor an if/else block
authorDavid Mitchell <davem@iabyn.com>
Fri, 27 Dec 2013 22:06:36 +0000 (22:06 +0000)
committerDavid Mitchell <davem@iabyn.com>
Fri, 7 Feb 2014 22:39:35 +0000 (22:39 +0000)
commit57fcbfa7eef9b70825a20226d93f531a65f195c2
tree1d002b6816f344381d397d643eaa813022f6272a
parent6ad5ffb3f2de296914ff79c22bf2375837bb65ec
re_intuit_start(): refactor an if/else block

change

    if (X) { do nothing } else if (Y) { Z }

to
    if (!X && Y) { Z }
regexec.c