This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
S_require_file() : simplify an else if block
authorDavid Mitchell <davem@iabyn.com>
Thu, 13 Apr 2017 10:53:35 +0000 (11:53 +0100)
committerDavid Mitchell <davem@iabyn.com>
Tue, 18 Apr 2017 11:58:32 +0000 (12:58 +0100)
commit13e8e86634c636913120ec966070c3f59eedcb29
tree9b5b2cc03620e0fdb727566e2d8bb7f528e48482
parentf0dea69ccb41c8ee0d9ed8ec7a0dc107daacde11
S_require_file() : simplify an else if block

change

    if (...) {
        ...
    }
    else {
      if (...) {
        ...
      }
    }
to

    if (...) {
        ...
    }
    else if (...) {
        ...
    }

Should make no functional difference
pp_ctl.c