Commit 48819dc5 authored by Dylan Araps's avatar Dylan Araps

Fix glitched line endings on long lines

parent f03b81a6
......@@ -2397,7 +2397,7 @@ info() {
[ -z "$2" ] && string="${string/*: }"
# Print the string
printf "%b%s\n" "${padding}${string}${reset}"
printf "%b%s\n" "${padding}${string}${reset} "
# Calculate info height
info_height="$((info_height+=1))"
......@@ -2432,7 +2432,7 @@ prin() {
string="$(trim "$string")"
# Print the info
printf "%b%s\n" "${padding}​${string}${reset}"
printf "%b%s\n" "${padding}​${string}${reset} "
# Calculate info height
info_height="$((info_height+=1))"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment