Adjust comments to fit within 80-columns.

This commit is contained in:
Devin Teske 2013-07-09 23:21:57 +00:00
parent 68e9cbd385
commit 8a86b3cb2c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=253121

View file

@ -195,8 +195,8 @@ f_dialog_line_sanitize()
# argument is NULL, the current title is returned.
#
# Each time this function is called, a backup of the current values is made
# allowing a one-time (single-level) restoration of the previous title using the
# f_dialog_title_restore() function (below).
# allowing a one-time (single-level) restoration of the previous title using
# the f_dialog_title_restore() function (below).
#
f_dialog_title()
{
@ -297,7 +297,7 @@ f_dialog_max_size()
#
# If we're not using Xdialog(1), we should assume that $DIALOG
# will render --backtitle behind the widget. In such a case, we
# should prevent the widget from obscuring the backtitle (unless
# should prevent a widget from obscuring the backtitle (unless
# $NO_BACKTITLE is set and non-NULL, allowing a trap-door).
#
if [ ! "$USE_XDIALOG" ] && [ ! "$NO_BACKTITLE" ]; then
@ -310,7 +310,7 @@ f_dialog_max_size()
local __adjust=5
[ "$NO_SHADOW" ] && __adjust=4
# Don't adjust the height if already too small (allowing
# Don't adjust height if already too small (allowing
# obscured backtitle for small values of __height).
[ ${__height:-0} -gt 11 ] &&
__height=$(( $__height - $__adjust ))