pp_formline: simplify growing of PL_formtarget
There's some reasonably complex logic to try and second guess how much
space to allocate or reallocate for the output buffer (some of which is
my doing from 2011,
26e935cfa6e7).
This commit removes most of this and now just does:
initially, grow the buffer by the size of the format. If any further
growing is needed later on (e.g. after a utf8 upgrade or due to @*) then
just grow as needed. This may give less optimal growing in edge cases
( i.e. repeated smaller grows rather than one big grow), but the old code
was often guessing wrong anyway.
This commit also makes it *always* check whether PL_formtarget needs growing
when about to append data to it, which is safer.