Merge pull request #525 from dylanaraps/bloat

Info: Remove useless blocks
This commit is contained in:
Dylan Araps 2016-12-13 21:02:29 +11:00 committed by GitHub
commit f3bfd5a9f5
1 changed files with 0 additions and 12 deletions

View File

@ -2481,12 +2481,6 @@ info() {
# Calculate info height
info_height="$((info_height+=1))"
# Fix rendering issues with w3m and lines that
# wrap to the next line by adding a max line
# length.
[[ "$image_backend" == "image" ]] && \
string="$(printf "%.$((columns - text_padding - gap))s" "$string")"
}
prin() {
@ -2508,12 +2502,6 @@ prin() {
# Calculate info height
info_height="$((info_height+=1))"
# Fix rendering issues with w3m and lines that
# wrap to the next line by adding a max line
# length.
[[ "$image_backend" == "image" ]] && \
string="$(printf "%.$((columns - text_padding - gap))s" "$string")"
# Tell info() that prin() was used.
prin=1
}