pp_subst: cosmetic re-arrangement of vars
authorDavid Mitchell <davem@iabyn.com>
Mon, 15 Jul 2013 18:16:10 +0000 (19:16 +0100)
committerDavid Mitchell <davem@iabyn.com>
Sun, 28 Jul 2013 09:33:38 +0000 (10:33 +0100)
commit6ac6605d91b6e84f101f1e57bb0df180e982b4c5
treeaea931e8f981cbc3459633c55ba9780acb7c353c
parentfe3974be45584ef82847c18e12a8eed80feb77e1
pp_subst: cosmetic re-arrangement of vars

since 'orig' always points to the start of the string, while 's' varies,
change

    s = SvPV_nomg(...);
    ...other stuff using value of s ...
    orig = s
    ...

to

    orig = SvPV_nomg(...);
    ...other stuff using value of orig ...
    s = orig
    ...

No functional change, just reduces the cognitive load slightly

also adds some comments as to what force_on_match is about.
pp_hot.c