Date: Tue, 9 Jul 2013 23:21:57 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253121 - head/usr.sbin/bsdconfig/share Message-ID: <201307092321.r69NLvjU085734@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Tue Jul 9 23:21:57 2013 New Revision: 253121 URL: http://svnweb.freebsd.org/changeset/base/253121 Log: Adjust comments to fit within 80-columns. Modified: head/usr.sbin/bsdconfig/share/dialog.subr Modified: head/usr.sbin/bsdconfig/share/dialog.subr ============================================================================== --- head/usr.sbin/bsdconfig/share/dialog.subr Tue Jul 9 23:12:26 2013 (r253120) +++ head/usr.sbin/bsdconfig/share/dialog.subr Tue Jul 9 23:21:57 2013 (r253121) @@ -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 ))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307092321.r69NLvjU085734>