diff options
author | dteske <dteske@FreeBSD.org> | 2013-07-09 23:21:57 +0000 |
---|---|---|
committer | dteske <dteske@FreeBSD.org> | 2013-07-09 23:21:57 +0000 |
commit | 53ef2508e06a61a140193eda87788d64daa5f02e (patch) | |
tree | b5e8d9e7f99878e14d7a339274cd4b1bf8509bdd | |
parent | 691f35718e7b841b431b170da764ea644755e29a (diff) | |
download | FreeBSD-src-53ef2508e06a61a140193eda87788d64daa5f02e.zip FreeBSD-src-53ef2508e06a61a140193eda87788d64daa5f02e.tar.gz |
Adjust comments to fit within 80-columns.
-rw-r--r-- | usr.sbin/bsdconfig/share/dialog.subr | 8 |
1 files changed, 4 insertions, 4 deletions
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 )) |