Fix incorrect padding with unicode block charS

This commit is contained in:
Dylan 2016-01-28 10:26:14 +11:00
parent 9a40ded878
commit 7186bd31e7
1 changed files with 1 additions and 1 deletions

2
fetch
View File

@ -1204,7 +1204,7 @@ getshuffle () {
getascii () {
# Get length of longest line
length="$(wc -L 2>/dev/null < "$ascii")"
length="$(LC_ALL="en_US.UTF8" wc -L 2>/dev/null < "$ascii")"
# Fallback to using awk on systems without 'wc -L'
[ -z "$length" ] && \