From 53ef2508e06a61a140193eda87788d64daa5f02e Mon Sep 17 00:00:00 2001 From: dteske Date: Tue, 9 Jul 2013 23:21:57 +0000 Subject: Adjust comments to fit within 80-columns. --- usr.sbin/bsdconfig/share/dialog.subr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/bsdconfig/share/dialog.subr b/usr.sbin/bsdconfig/share/dialog.subr index c6f2678..bde3753 100644 --- a/usr.sbin/bsdconfig/share/dialog.subr +++ b/usr.sbin/bsdconfig/share/dialog.subr @@ -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 )) -- cgit v1.1