Phillip Wood <phillip.wood123@xxxxxxxxx> writes: > Thanks for adding this, the patch looks good. Strictly speaking you > don't need the "g" at the end of the sed expression as it only ever > matches a single instance within each line but that's not worth > worrying about. Yeah, as the pattern is anchored at the left edge, "g" would cause no harm in this case, but the intention is "we have one extra bar at the left end to protect runs of spaces, and we want to strip that single bar" and it makes it clear not to write "g" there for that reason. Good eyes. Thanks.