From: David Levine Date: Sun, 8 Dec 2013 18:50:39 +0000 (-0600) Subject: With the fix of 4929cad323afc87404752a1e88664a7f42cbb737, X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/2d82da244d02a79d994b9020099cfb627a8b32ed?hp=c5515a353e7316cb1c2ba3d4dce2979d5779ce37 With the fix of 4929cad323afc87404752a1e88664a7f42cbb737, prepare_space() no longer needs to insert initial space. --- diff --git a/test/common.sh.in b/test/common.sh.in index 8f5d576c..6c9652ce 100644 --- a/test/common.sh.in +++ b/test/common.sh.in @@ -133,10 +133,9 @@ squeeze_lines() { sed '/^$/N;/\n$/D' } -#### Filter that inserts initial whitespace and converts non-breakable -#### space U+00A0 to an ASCII space. +#### Filter that converts non-breakable space U+00A0 to an ASCII space. prepare_space() { - sed 's/^/ /; s/'"`printf '\\302\\240'`"'/ /g' + sed 's/'"`printf '\\302\\240'`"'/ /g' } #### check() requires two arguments, each the name of a file to be