From owner-svn-src-all@FreeBSD.ORG Tue Jul 9 23:21:57 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A73A696D; Tue, 9 Jul 2013 23:21:57 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9AB2E134D; Tue, 9 Jul 2013 23:21:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r69NLvUk085735; Tue, 9 Jul 2013 23:21:57 GMT (envelope-from dteske@svn.freebsd.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r69NLvjU085734; Tue, 9 Jul 2013 23:21:57 GMT (envelope-from dteske@svn.freebsd.org) Message-Id: <201307092321.r69NLvjU085734@svn.freebsd.org> From: Devin Teske Date: Tue, 9 Jul 2013 23:21:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253121 - head/usr.sbin/bsdconfig/share X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2013 23:21:57 -0000 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 ))