Remove extra newlines from get_cols (#1449)

Co-authored-by: Julian Torreno <julian@callisto.jupiter>
This commit is contained in:
Julian Torreno 2020-10-04 07:26:51 -04:00 committed by GitHub
parent bc4c3bc8f9
commit a4d9c557b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3807,8 +3807,8 @@ get_cols() {
((info_height+=block_range[1]>7?block_height+3:block_height+2)) ((info_height+=block_range[1]>7?block_height+3:block_height+2))
case $col_offset in case $col_offset in
"auto") printf '\n\e[%bC%b\n\n' "$text_padding" "${zws}${cols}" ;; "auto") printf '\n\e[%bC%b\n' "$text_padding" "${zws}${cols}" ;;
*) printf '\n\e[%bC%b\n\n' "$col_offset" "${zws}${cols}" ;; *) printf '\n\e[%bC%b\n' "$col_offset" "${zws}${cols}" ;;
esac esac
fi fi