Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Apr 2017 21:30:05 +0000 (UTC)
From:      Eric van Gyzen <vangyzen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r316430 - head/bin/dd
Message-ID:  <201704022130.v32LU5Ee001325@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vangyzen
Date: Sun Apr  2 21:30:05 2017
New Revision: 316430
URL: https://svnweb.freebsd.org/changeset/base/316430

Log:
  Fix indentation in dd(1)
  
  Quoting http://mdocml.bsd.lv/mdoc/details/width.html
  
  Do not use macros in the argument specifying the width,
  since that's not portable.  While GNU troff can handle it,
  mandoc cannot.
  
  MFC after:	3 days
  Sponsored by:	Dell EMC

Modified:
  head/bin/dd/dd.1

Modified: head/bin/dd/dd.1
==============================================================================
--- head/bin/dd/dd.1	Sun Apr  2 20:59:12 2017	(r316429)
+++ head/bin/dd/dd.1	Sun Apr  2 21:30:05 2017	(r316430)
@@ -32,7 +32,7 @@
 .\"     @(#)dd.1	8.2 (Berkeley) 1/13/94
 .\" $FreeBSD$
 .\"
-.Dd October 5, 2016
+.Dd April 2, 2017
 .Dt DD 1
 .Os
 .Sh NAME
@@ -54,7 +54,7 @@ displays the number of complete and part
 and truncated input records to the standard error output.
 .Pp
 The following operands are available:
-.Bl -tag -width ".Cm of Ns = Ns Ar file"
+.Bl -tag -width "of=file"
 .It Cm bs Ns = Ns Ar n
 Set both input and output block size to
 .Ar n
@@ -164,7 +164,7 @@ bytes per second.
 Where
 .Cm value
 is one of the symbols from the following list.
-.Bl -tag -width ".Cm noxfer"
+.Bl -tag -width "noxfer"
 .It Cm noxfer
 Do not print the transfer statistics as the last line of status output.
 .It Cm none
@@ -175,7 +175,7 @@ Error messages are shown; informational 
 Where
 .Cm value
 is one of the symbols from the following list.
-.Bl -tag -width ".Cm unblock"
+.Bl -tag -width "unblock"
 .It Cm ascii , oldascii
 The same as the
 .Cm unblock
@@ -459,4 +459,4 @@ subsystem might prevent the super-user f
 Instructions for temporarily disabling these protection mechanisms can be
 found in the
 .Xr geom 4
-manpage.
+man page.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704022130.v32LU5Ee001325>