aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/find_repeated_words.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find_repeated_words.sh b/scripts/find_repeated_words.sh
index 6d885e60a8..eac6b38384 100644
--- a/scripts/find_repeated_words.sh
+++ b/scripts/find_repeated_words.sh
@@ -14,7 +14,7 @@ for file in "$@" ; do
tr ' \008' '\012' | sed -e '/^$/d' | \
awk 'BEGIN {p=""} {if (p==$0) print p; p=$0 }' | \
grep '[a-zA-Z]' | tr '\012' ' ')
- if test -n "X$words"; then
+ if test -n "$words"; then
echo "$file: $words"
fi
done