ascii: fix Manjaro gap. Closes #1175

This commit is contained in:
Dylan Araps 2019-10-30 12:13:42 +00:00
parent 13f2d3a173
commit 96f3aa948d
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 1 deletions

View File

@ -3586,7 +3586,8 @@ print_ascii() {
# Calculate size of ascii file in line length / line count.
while IFS=$'\n' read -r line; do
line="${line//\\\\/\\}"
line=${line//\\\\/\\}
line=${line//█/ }
((++lines,${#line}>ascii_len)) && ascii_len="${#line}"
done <<< "${ascii_data//\$\{??\}}"