From owner-svn-src-stable-11@freebsd.org Wed Nov 15 17:36:05 2017 Return-Path: Delivered-To: svn-src-stable-11@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AE81DE2BC3; Wed, 15 Nov 2017 17:36:05 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6A13734AE; Wed, 15 Nov 2017 17:36:04 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id vAFHa2B5052206; Wed, 15 Nov 2017 09:36:02 -0800 (PST) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id vAFHa2qF052205; Wed, 15 Nov 2017 09:36:02 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201711151736.vAFHa2qF052205@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r325844 - stable/11/lib/libutil In-Reply-To: <201711151217.vAFCHpn6039893@repo.freebsd.org> To: Baptiste Daroussin Date: Wed, 15 Nov 2017 09:36:02 -0800 (PST) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-stable-11@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Nov 2017 17:36:05 -0000 > Author: bapt > Date: Wed Nov 15 12:17:51 2017 > New Revision: 325844 > URL: https://svnweb.freebsd.org/changeset/base/325844 > > Log: > MFC r325716: > > Fix some nroff style issue > > Modified: > stable/11/lib/libutil/hexdump.3 > Directory Properties: > stable/11/ (props changed) > > Modified: stable/11/lib/libutil/hexdump.3 > ============================================================================== > --- stable/11/lib/libutil/hexdump.3 Wed Nov 15 11:35:02 2017 (r325843) > +++ stable/11/lib/libutil/hexdump.3 Wed Nov 15 12:17:51 2017 (r325844) > @@ -42,14 +42,9 @@ > The > .Fn hexdump > function prints an array of bytes to standard out in hexadecimal form, > -along with the > -.Tn ASCII > -representation of the bytes, if possible. > -By default, each line of > -output will start with an offset count, followed by 16 hexadecimal values, > -followed by 16 > -.Tn ASCII > -characters. > +along with the ASCII representation of the bytes, if possible. > +By default, each line of output will start with an offset count, followed by 16 > +hexadecimal values, followed by 16 ASCII characters. Just for the future, the old school way of dong this would be: By default, each line of output will start with an offset count, followed by 16 hexadecimal values, followed by 16 ASCII characters. IE, you put each fragment of a sentance on its own line. It is bad form in .troff to try and pack lines full. I am not sure why we are removing the troff .Tn macro, mandoc may do nothing with it, but if someone formats the man page for a typesetter this does make the ASCII look special. > .Bl -tag -width indent > .It Fa ptr > Pointer to the array of bytes to print. > @@ -73,12 +68,10 @@ Flags for controlling the formatting of the output. > Integer value of the number of bytes to display on each line. > A value of 0 implies that the default value of 16 will be used. > .It Bits 8-15 > -Character > -.Tn ASCII > -value to use as the separator for the hexadecimal output. > +Character ASCII value to use as the separator for the hexadecimal output. > A value of 0 implies that the default value of 32 > -.Tn ( ASCII > -space) will be used. > +.Pq ASCII space > +will be used. > .It Dv HD_OMIT_COUNT > Do not print the offset column at the beginning of each line. > .It Dv HD_OMIT_HEX > > -- Rod Grimes rgrimes@freebsd.org