From owner-svn-src-head@FreeBSD.ORG Tue May 11 23:08:15 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1D93106566B; Tue, 11 May 2010 23:08:15 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id 914FB8FC15; Tue, 11 May 2010 23:08:15 +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 o4BN8FjI023201; Tue, 11 May 2010 23:08:15 GMT (envelope-from uqs@svn.freebsd.org) Received: (from uqs@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4BN8Fft023198; Tue, 11 May 2010 23:08:15 GMT (envelope-from uqs@svn.freebsd.org) Message-Id: <201005112308.o4BN8Fft023198@svn.freebsd.org> From: Ulrich Spoerlein Date: Tue, 11 May 2010 23:08:15 +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: r207940 - head/lib/libc/stdio X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 11 May 2010 23:08:15 -0000 Author: uqs Date: Tue May 11 23:08:15 2010 New Revision: 207940 URL: http://svn.freebsd.org/changeset/base/207940 Log: mdoc: use macro for +- that is understood by mdocml Reviewed by: brueffer Modified: head/lib/libc/stdio/printf.3 head/lib/libc/stdio/wprintf.3 Modified: head/lib/libc/stdio/printf.3 ============================================================================== --- head/lib/libc/stdio/printf.3 Tue May 11 23:08:07 2010 (r207939) +++ head/lib/libc/stdio/printf.3 Tue May 11 23:08:15 2010 (r207940) @@ -449,7 +449,7 @@ The .Vt double argument is rounded and converted in the style .Sm off -.Oo \- Oc Ar d Li \&. Ar ddd Li e \\*[Pm] Ar dd +.Oo \- Oc Ar d Li \&. Ar ddd Li e \(+- Ar dd .Sm on where there is one digit before the decimal-point character @@ -525,7 +525,7 @@ The .Vt double argument is rounded and converted to hexadecimal notation in the style .Sm off -.Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \\*[Pm] Oc Ar d , +.Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \(+- Oc Ar d , .Sm on where the number of digits after the hexadecimal-point character is equal to the precision specification. Modified: head/lib/libc/stdio/wprintf.3 ============================================================================== --- head/lib/libc/stdio/wprintf.3 Tue May 11 23:08:07 2010 (r207939) +++ head/lib/libc/stdio/wprintf.3 Tue May 11 23:08:15 2010 (r207940) @@ -376,7 +376,7 @@ The .Vt double argument is rounded and converted in the style .Sm off -.Oo \- Oc Ar d Li \&. Ar ddd Li e \\*[Pm] Ar dd +.Oo \- Oc Ar d Li \&. Ar ddd Li e \(+- Ar dd .Sm on where there is one digit before the decimal-point character @@ -452,7 +452,7 @@ The .Vt double argument is converted to hexadecimal notation in the style .Sm off -.Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \\*[Pm] Oc Ar d , +.Oo \- Oc Li 0x Ar h Li \&. Ar hhhp Oo \(+- Oc Ar d , .Sm on where the number of digits after the hexadecimal-point character is equal to the precision specification.