From 19aa5eb7f76aef9c08844605a2678e12b8c22e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 22 Mar 2014 13:20:36 +0100 Subject: [PATCH] Make fix-ellipsis remove weird spaces too --- tools/fix-ellipsis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fix-ellipsis.sh b/tools/fix-ellipsis.sh index b3f02fb85..490027b75 100755 --- a/tools/fix-ellipsis.sh +++ b/tools/fix-ellipsis.sh @@ -2,4 +2,4 @@ # Fix TypographyEllipsis programmatically -sed -i 's/\.\.\./…/g' res/values*/*.xml +sed -i -e 's/\.\.\./…/g' -e 's/ …/…/g' res/values*/*.xml