From owner-svn-src-head@freebsd.org Sun Mar 19 01:24:20 2017 Return-Path: Delivered-To: svn-src-head@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 9F82CD08F63; Sun, 19 Mar 2017 01:24:20 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C4EF1D75; Sun, 19 Mar 2017 01:24:20 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2J1OJYI043833; Sun, 19 Mar 2017 01:24:19 GMT (envelope-from bjk@FreeBSD.org) Received: (from bjk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2J1OJgB043827; Sun, 19 Mar 2017 01:24:19 GMT (envelope-from bjk@FreeBSD.org) Message-Id: <201703190124.v2J1OJgB043827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bjk set sender to bjk@FreeBSD.org using -f From: Benjamin Kaduk Date: Sun, 19 Mar 2017 01:24:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r315528 - in head/share/man: man5 man9 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Mar 2017 01:24:20 -0000 Author: bjk (doc committer) Date: Sun Mar 19 01:24:18 2017 New Revision: 315528 URL: https://svnweb.freebsd.org/changeset/base/315528 Log: Tidy up mdoc formatting for "etc.)" at end of line man(1) has some logic to use two spaces after a full stop, which is useful for spotting sentence breaks in monospace fonts. However, this logic is very simple, treating almost all '.' characters as end-of-sentence markers, unless followed by certain other characters. For example, '.,' is not end-of-sentence, and neither is ".) ", but ".)" at the end of a line triggers the sentence-end detection. Apply a zero-width space to a few instances of this in share/man, and also supply a missing full stop for an instance that occurred at the end of a sentence. Leave untouched several instances that are at the end of a sentence or list element. Reported by: 0mp (ieee80211.9) Modified: head/share/man/man5/stab.5 head/share/man/man9/ieee80211.9 head/share/man/man9/ieee80211_vap.9 head/share/man/man9/taskqueue.9 head/share/man/man9/vnode.9 Modified: head/share/man/man5/stab.5 ============================================================================== --- head/share/man/man5/stab.5 Sun Mar 19 00:54:24 2017 (r315527) +++ head/share/man/man5/stab.5 Sun Mar 19 01:24:18 2017 (r315528) @@ -42,7 +42,7 @@ The file defines some of the symbol table .Fa n_type field values for a.out files. -These are the types for permanent symbols (i.e., not local labels, etc.) +These are the types for permanent symbols (i.e., not local labels, etc.\&) used by the old debugger .Em sdb and the Berkeley Pascal compiler Modified: head/share/man/man9/ieee80211.9 ============================================================================== --- head/share/man/man9/ieee80211.9 Sun Mar 19 00:54:24 2017 (r315527) +++ head/share/man/man9/ieee80211.9 Sun Mar 19 01:24:18 2017 (r315528) @@ -59,7 +59,7 @@ device driver implements a virtual radio users through network interfaces (aka vaps) that are cloned from the underlying device. These interfaces have an operating mode -(station, adhoc, hostap, wds, monitor, etc.) +(station, adhoc, hostap, wds, monitor, etc.\&) that is fixed for the lifetime of the interface. Devices that can support multiple concurrent interfaces allow multiple vaps to be cloned. Modified: head/share/man/man9/ieee80211_vap.9 ============================================================================== --- head/share/man/man9/ieee80211_vap.9 Sun Mar 19 00:54:24 2017 (r315527) +++ head/share/man/man9/ieee80211_vap.9 Sun Mar 19 01:24:18 2017 (r315528) @@ -62,7 +62,7 @@ a virtual radio API that is exported to users through network interfaces (aka vaps) that are cloned from the underlying device. These interfaces have an operating mode -(station, adhoc, hostap, wds, monitor, etc.) +(station, adhoc, hostap, wds, monitor, etc.\&) that is fixed for the lifetime of the interface. Devices that can support multiple concurrent interfaces allow multiple vaps to be cloned. Modified: head/share/man/man9/taskqueue.9 ============================================================================== --- head/share/man/man9/taskqueue.9 Sun Mar 19 00:54:24 2017 (r315527) +++ head/share/man/man9/taskqueue.9 Sun Mar 19 01:24:18 2017 (r315528) @@ -404,7 +404,7 @@ the .Va init argument to the macro is executed as a C statement, allowing any further initialisation to be performed -(such as registering an interrupt handler etc.) +(such as registering an interrupt handler, etc.). .Pp The .Fn TASKQUEUE_DEFINE_THREAD Modified: head/share/man/man9/vnode.9 ============================================================================== --- head/share/man/man9/vnode.9 Sun Mar 19 00:54:24 2017 (r315527) +++ head/share/man/man9/vnode.9 Sun Mar 19 01:24:18 2017 (r315528) @@ -82,7 +82,7 @@ system calls. Any call which returns a vnode (e.g.,\& .Xr vget 9 , .Xr VOP_LOOKUP 9 , -etc.) +etc.\&) will increase the .Va v_usecount of the vnode by one.