cols: Fix lint errors.

This commit is contained in:
Dylan Araps 2018-06-02 09:52:49 +10:00
parent 2f917c78d2
commit 96386dc90e
1 changed files with 12 additions and 10 deletions

View File

@ -3345,16 +3345,18 @@ get_cols() {
# Convert the width to space chars. # Convert the width to space chars.
printf -v block_width "%${block_width}s" printf -v block_width "%${block_width}s"
# Set variables.
start="${block_range[0]}"
end="${block_range[1]}"
# Generate the string. # Generate the string.
for ((start; start<=end; start++)); do for ((block_range[0]; block_range[0]<=block_range[1]; block_range[0]++)); do
case "$start" in case "${block_range[0]}" in
[0-6]) blocks+="${reset}\e[3${start}m\e[4${start}m${block_width}" ;; [0-7])
7) blocks+="${reset}\e[3${start}m\e[4${start}m${block_width}" ;; printf -v blocks '%b\e[3%bm\e[4%bm%b' \
*) blocks2+="\e[38;5;${start}m\e[48;5;${start}m${block_width}" ;; "$blocks" "${block_range[0]}" "${block_range[0]}" "$block_width"
;;
*)
printf -v blocks2 '%b\e[38;5;%bm\e[48;5;%bm%b' \
"$blocks2" "${block_range[0]}" "${block_range[0]}" "$block_width"
;;
esac esac
done done
@ -3372,7 +3374,7 @@ get_cols() {
# Add block height to info height. # Add block height to info height.
((info_height+=block_height-1)) ((info_height+=block_height-1))
printf "%b" "\e[${text_padding}C${zws}${cols}" printf '\e[%bC%b' "$text_padding" "${zws}${cols}"
fi fi
unset -v blocks blocks2 cols unset -v blocks blocks2 cols