From patchwork Tue Apr 17 22:45:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TWFudWVsIEzDs3Blei1JYsOhw7Fleg==?= X-Patchwork-Id: 153329 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id B4FC6B6FD8 for ; Wed, 18 Apr 2012 08:46:03 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1335307565; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: MIME-Version:Received:From:Date:Message-ID:Subject:To: Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence: List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=bYLrhIkcDbistuIT2zxaDUnkZwo=; b=mRH4jNL5+wbqwGO 3FShfMX+BQE8l2eD3Xb63oody8cl6lWE/vsuI4NfT4QqaRek50ofjegF7dRgUHeA dZMJ6IaXuy8EleOg8/S+XUc5+MO1wlhBN7YcE0ZSjqRsIAg91RlD7WwfcaYPX4L2 drv1/fWzFCrQ4b9wy6A8vCiWCgds= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:MIME-Version:Received:From:Date:Message-ID:Subject:To:Content-Type:Content-Transfer-Encoding:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=rE+uX/Pmd48bp7pcy7kPKySIIVdQZbX575JgNrhgxa5LOLD5MpkChDxmhSHovN lrofyJTkFonRDydvmYsedfDr1qbjg/0R2ZpPb9QU81TYstQg8h72y9C7Pv76Ck3i YgsEDIytSKGNEOyZ2FY4IHaVnCARhf9QaoR3p6xUQgIRw=; Received: (qmail 2057 invoked by alias); 17 Apr 2012 22:45:59 -0000 Received: (qmail 2045 invoked by uid 22791); 17 Apr 2012 22:45:57 -0000 X-SWARE-Spam-Status: No, hits=-3.9 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-bk0-f47.google.com (HELO mail-bk0-f47.google.com) (209.85.214.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 17 Apr 2012 22:45:24 +0000 Received: by bkcjg15 with SMTP id jg15so5698643bkc.20 for ; Tue, 17 Apr 2012 15:45:23 -0700 (PDT) Received: by 10.205.122.144 with SMTP id gg16mr13669bkc.12.1334702723296; Tue, 17 Apr 2012 15:45:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.34.24 with HTTP; Tue, 17 Apr 2012 15:45:02 -0700 (PDT) From: =?ISO-8859-1?Q?Manuel_L=F3pez=2DIb=E1=F1ez?= Date: Wed, 18 Apr 2012 00:45:02 +0200 Message-ID: Subject: [committed] avoid @opindex before @item in invoke.texi To: Gcc Patch List Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Otherwise, it starts a new paragraph.Tested by inspecting the resulting html. Committed as obvious. Cheers, Manuel. Index: gcc/doc/invoke.texi =================================================================== --- gcc/doc/invoke.texi (revision 186552) +++ gcc/doc/invoke.texi (working copy) @@ -2875,8 +2875,8 @@ line-wrapping is done; each error message appears on a single line. +@item -fdiagnostics-show-location=once @opindex fdiagnostics-show-location -@item -fdiagnostics-show-location=once Only meaningful in line-wrapping mode. Instructs the diagnostic messages reporter to emit @emph{once} source location information; that is, in case the message is too long to fit on a single physical line and has to Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 186552) +++ gcc/ChangeLog (working copy) @@ -1,3 +1,8 @@ +2012-04-18 Manuel López-Ibáñez + + * doc/invoke.texi (Language Independent Options): @item should be + before @opindex. +