Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Nov 2015 22:24:57 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r290300 - stable/10/usr.sbin/sysrc
Message-ID:  <201511022224.tA2MOvkQ083045@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Mon Nov  2 22:24:57 2015
New Revision: 290300
URL: https://svnweb.freebsd.org/changeset/base/290300

Log:
  MFC r287421: Fix mandoc(1) "WARNING: end of line whitespace"

Modified:
  stable/10/usr.sbin/sysrc/sysrc.8
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/sysrc/sysrc.8
==============================================================================
--- stable/10/usr.sbin/sysrc/sysrc.8	Mon Nov  2 22:22:48 2015	(r290299)
+++ stable/10/usr.sbin/sysrc/sysrc.8	Mon Nov  2 22:24:57 2015	(r290300)
@@ -199,8 +199,8 @@ syntax to add items to existing values,
 the first character of the value is taken as the delimiter separating items
 .Pq usually Qo \  Qc or Qo , Qc .
 For example, in the following statement:
-.Bl -tag -width indent+
-.It \ 
+.Bl -item -offset indent
+.It
 .Nm
 cloned_interfaces+=" gif0"
 .El
@@ -223,25 +223,25 @@ For example, the above and below stateme
 .Dq gif0
 starts with an alpha-numeric character
 .Pq the letter Li g :
-.Bl -tag -width indent+
-.It \ 
+.Bl -item -offset indent
+.It
 .Nm
 cloned_interfaces+=gif0
 .El
 .Pp
 Take the following sequence for example:
-.Bl -tag -width indent+
-.It \ 
+.Bl -item -offset indent
+.It
 .Nm
 cloned_interfaces= # start with NULL
-.It \ 
+.It
 .Nm
 cloned_interfaces+=gif0
 .Dl # NULL -> `gif0' Pq NB: no preceding delimiter
-.It \ 
+.It
 .Nm
 cloned_interfaces+=gif0 # no change
-.It \ 
+.It
 .Nm
 cloned_interfaces+="tun0 gif0"
 .Dl # `gif0' -> `gif0 tun0' Pq NB: no duplication
@@ -277,21 +277,21 @@ For example, the above and below stateme
 .Dq gif0
 starts with an alpha-numeric character
 .Pq the letter Li g :
-.Bl -tag -width indent+
-.It \ 
+.Bl -item -offset indent
+.It
 .Nm
 cloned_interfaces-=gif0
 .El
 .Pp
 Take the following sequence for example:
-.Bl -tag -width indent+
-.It \ 
+.Bl -item -offset indent
+.It
 .Nm
 foo="bar baz" # start
-.It \ 
+.It
 .Nm
 foo-=bar # `bar baz' -> `baz'
-.It \ 
+.It
 .Nm
 foo-=baz # `baz' -> NULL
 .El



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