From owner-svn-src-all@FreeBSD.ORG Mon Aug 2 13:11:36 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1497F1065777; Mon, 2 Aug 2010 13:11:36 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C7ABB8FC08; Mon, 2 Aug 2010 13:11:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o72DBZkD031406; Mon, 2 Aug 2010 13:11:35 GMT (envelope-from uqs@svn.freebsd.org) Received: (from uqs@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o72DBZtJ031397; Mon, 2 Aug 2010 13:11:35 GMT (envelope-from uqs@svn.freebsd.org) Message-Id: <201008021311.o72DBZtJ031397@svn.freebsd.org> From: Ulrich Spoerlein Date: Mon, 2 Aug 2010 13:11:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r210764 - in head: lib/libc/locale lib/libc/rpc lib/libkvm sys/boot/common usr.bin/c89 usr.bin/c99 usr.bin/tar usr.sbin/ancontrol X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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, 02 Aug 2010 13:11:36 -0000 Author: uqs Date: Mon Aug 2 13:11:35 2010 New Revision: 210764 URL: http://svn.freebsd.org/changeset/base/210764 Log: mdoc: make sure to pass at least one argument to quotation macros Modified: head/lib/libc/locale/isgraph.3 head/lib/libc/locale/mbrtowc.3 head/lib/libc/rpc/publickey.3 head/lib/libkvm/kvm_getloadavg.3 head/sys/boot/common/loader.8 head/usr.bin/c89/c89.1 head/usr.bin/c99/c99.1 head/usr.bin/tar/bsdtar.1 head/usr.sbin/ancontrol/ancontrol.8 Modified: head/lib/libc/locale/isgraph.3 ============================================================================== --- head/lib/libc/locale/isgraph.3 Mon Aug 2 13:11:27 2010 (r210763) +++ head/lib/libc/locale/isgraph.3 Mon Aug 2 13:11:35 2010 (r210764) @@ -48,7 +48,7 @@ The .Fn isgraph function tests for any printing character except space -.Pq Ql "\ " +.Pq Ql "\~" and other locale-specific space-like characters. The value of the argument must be representable as an Modified: head/lib/libc/locale/mbrtowc.3 ============================================================================== --- head/lib/libc/locale/mbrtowc.3 Mon Aug 2 13:11:27 2010 (r210763) +++ head/lib/libc/locale/mbrtowc.3 Mon Aug 2 13:11:35 2010 (r210764) @@ -69,7 +69,7 @@ was .Dv NULL , .Fa s was an empty string -.Pq Qq +.Pq Qq \& and .Fa n was 1. Modified: head/lib/libc/rpc/publickey.3 ============================================================================== --- head/lib/libc/rpc/publickey.3 Mon Aug 2 13:11:27 2010 (r210763) +++ head/lib/libc/rpc/publickey.3 Mon Aug 2 13:11:35 2010 (r210764) @@ -44,7 +44,7 @@ fails to decrypt the secret key, the rou argument will be a .Dv NULL string -.Pq Dq . +.Pq Dq \& . .Sh SEE ALSO .Xr publickey 5 .Pp Modified: head/lib/libkvm/kvm_getloadavg.3 ============================================================================== --- head/lib/libkvm/kvm_getloadavg.3 Mon Aug 2 13:11:27 2010 (r210763) +++ head/lib/libkvm/kvm_getloadavg.3 Mon Aug 2 13:11:35 2010 (r210764) @@ -50,7 +50,7 @@ averaged over various periods of time. Up to .Fa nelem samples are retrieved and assigned to successive elements of -.Fa loadavg Ns Bq . +.Fa loadavg Ns Bq \& . The system imposes a maximum of 3 samples, representing averages over the last 1, 5, and 15 minutes, respectively. .Sh DIAGNOSTICS Modified: head/sys/boot/common/loader.8 ============================================================================== --- head/sys/boot/common/loader.8 Mon Aug 2 13:11:27 2010 (r210763) +++ head/sys/boot/common/loader.8 Mon Aug 2 13:11:35 2010 (r210764) @@ -806,7 +806,7 @@ Evaluates the remainder of the input buf exception guard. .It Ic .# Works like -.Ic . +.Ic "." but without outputting a trailing space. .It Ic fclose Pq Ar fd -- Closes a file. Modified: head/usr.bin/c89/c89.1 ============================================================================== --- head/usr.bin/c89/c89.1 Mon Aug 2 13:11:27 2010 (r210763) +++ head/usr.bin/c89/c89.1 Mon Aug 2 13:11:35 2010 (r210764) @@ -94,7 +94,7 @@ absolute pathnames to look in the direct pathname before looking in the usual places. Thus, headers whose names are enclosed in double-quotes -.Pq Qq +.Pq Qq \& will be searched for first in the directory of the file with the .Ic #include @@ -103,7 +103,7 @@ directories named in .Fl I options, and last in the usual places. For headers whose names are enclosed in angle brackets -.Pq Aq , +.Pq Aq \& , the header will be searched for only in directories named in .Fl I Modified: head/usr.bin/c99/c99.1 ============================================================================== --- head/usr.bin/c99/c99.1 Mon Aug 2 13:11:27 2010 (r210763) +++ head/usr.bin/c99/c99.1 Mon Aug 2 13:11:35 2010 (r210764) @@ -96,7 +96,7 @@ absolute pathnames to look in the direct pathname before looking in the usual places. Thus, headers whose names are enclosed in double-quotes -.Pq Qq +.Pq Qq \& will be searched for first in the directory of the file with the .Ic #include @@ -105,7 +105,7 @@ directories named in .Fl I options, and last in the usual places. For headers whose names are enclosed in angle brackets -.Pq Aq , +.Pq Aq \& , the header will be searched for only in directories named in .Fl I Modified: head/usr.bin/tar/bsdtar.1 ============================================================================== --- head/usr.bin/tar/bsdtar.1 Mon Aug 2 13:11:27 2010 (r210763) +++ head/usr.bin/tar/bsdtar.1 Mon Aug 2 13:11:35 2010 (r210764) @@ -354,9 +354,9 @@ is run as non-root. .It Fl Fl numeric-owner This is equivalent to .Fl Fl uname -.Qq +.Qq \& .Fl Fl gname -.Qq . +.Qq \& . On extract, it causes user and group names in the archive to be ignored in favor of the numeric user and group ids. On create, it causes user and group names to not be stored Modified: head/usr.sbin/ancontrol/ancontrol.8 ============================================================================== --- head/usr.sbin/ancontrol/ancontrol.8 Mon Aug 2 13:11:27 2010 (r210763) +++ head/usr.sbin/ancontrol/ancontrol.8 Mon Aug 2 13:11:35 2010 (r210764) @@ -308,7 +308,7 @@ Set a WEP key. For 40 bit prefix 10 hex character with 0x. For 128 bit prefix 26 hex character with 0x. Use -.Qq +.Qq \& as the key to erase the key. Supports 4 keys; even numbers are for permanent keys and odd number are for temporary keys.