svn commit: r253121 - head/usr.sbin/bsdconfig/share

Devin Teske dteske at FreeBSD.org
Tue Jul 9 23:21:57 UTC 2013


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 ))


More information about the svn-src-all mailing list