This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_sv_vcatpvfn_flags: simplify v/asterisk code
authorDavid Mitchell <davem@iabyn.com>
Fri, 26 May 2017 21:26:58 +0000 (22:26 +0100)
committerDavid Mitchell <davem@iabyn.com>
Wed, 7 Jun 2017 08:11:04 +0000 (09:11 +0100)
commitf0498cbc4c53e95d3dc615590171765dd34cbf6e
tree7ae12422a56ed4d0e347db31cb78d3739dfd6810
parentacb5c40ed6c543c736a67a4511651d441cf7fe3d
Perl_sv_vcatpvfn_flags: simplify v/asterisk code

The previous commit's rearrangement of the v and * code now allows us to:
1) eliminate the 'vectorarg' bool variable, which is set but no longer
   used;
2) join two adjacent "if (asterisk)" and "if (!asterisk)" blocks into a
   single if/else.
sv.c