From owner-svn-src-all@FreeBSD.ORG Mon Feb 17 15:31:01 2014 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5EFD5CC6; Mon, 17 Feb 2014 15:31:01 +0000 (UTC) Received: from mail109.syd.optusnet.com.au (mail109.syd.optusnet.com.au [211.29.132.80]) by mx1.freebsd.org (Postfix) with ESMTP id 20DF01DD9; Mon, 17 Feb 2014 15:31:00 +0000 (UTC) Received: from c122-106-144-87.carlnfd1.nsw.optusnet.com.au (c122-106-144-87.carlnfd1.nsw.optusnet.com.au [122.106.144.87]) by mail109.syd.optusnet.com.au (Postfix) with ESMTPS id C34E8D627DF; Tue, 18 Feb 2014 02:07:07 +1100 (EST) Date: Tue, 18 Feb 2014 02:07:06 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Mark Felder Subject: Re: svn commit: r262051 - head/cddl/contrib/opensolaris/cmd/zpool In-Reply-To: <201402171323.s1HDNnQg059102@svn.freebsd.org> Message-ID: <20140218015927.D1978@besplex.bde.org> References: <201402171323.s1HDNnQg059102@svn.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=Wu4Sb7vv c=1 sm=1 tr=0 a=p/w0leo876FR0WNmYI1KeA==:117 a=PO7r1zJSAAAA:8 a=Gn0936ki9ycA:10 a=kj9zAlcOel0A:10 a=JzwRw_2MAAAA:8 a=eqykFKSQAQgA:10 a=FDc_Fc19FI4qhLbiobEA:9 a=CjuIK1q_8ugA:10 Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 17 Feb 2014 15:31:01 -0000 On Mon, 17 Feb 2014, Mark Felder wrote: > Log: > Fix formatting. > > "Manpages should start a new sentence on a new line. This makes it easier > for translators to track changes." -jhb This has very little to do with translators. This makes it possible for man(1) to format the output correctly, at least for monospaced fonts. > Modified: head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 > ============================================================================== > --- head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Mon Feb 17 13:19:27 2014 (r262050) > +++ head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Mon Feb 17 13:23:49 2014 (r262051) > @@ -1960,5 +1960,5 @@ implementation of this manual page was i > The > .Cm spare > feature requires a utility to detect zpool degradation and initiate > -disk replacement within the zpool. FreeBSD does not provide such a > -utility at this time. > +disk replacement within the zpool. > +FreeBSD does not provide such a utility at this time. Not splitting the line gave a hard-coded the sentence break of 1 space. Splitting the line allows man(1) to format with the default number of spaces. The default isn't 1. Bruce