Skip to content

Commit e44040b

Browse files
committed
[F] Fix incorrect ascii length when backslashes are present
dylanaraps/neofetch#1543 #19
1 parent 59fa4e5 commit e44040b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neofetch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4712,7 +4712,7 @@ print_ascii() {
47124712
then
47134713
lines=$ascii_lines
47144714
else
4715-
while IFS=$'\n' read -r line; do
4715+
while IFS=$'\n' read line; do
47164716
line=${line/// }
47174717
# Fast method to strip codes
47184718
strip_escape_codes "${line}" line

0 commit comments

Comments
 (0)