From patchwork Thu Feb 21 16:33:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 222335 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 5D9F22C0090 for ; Fri, 22 Feb 2013 03:34:02 +1100 (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=1362069242; h=Comment: DomainKey-Signature:Received:Received:Received:Received:From:To: Cc:Subject:References:Date:In-Reply-To:Message-ID:User-Agent: MIME-Version:Content-Type:Mailing-List:Precedence:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=dpMNmAZkCWFRLZr6Xx0HmW0Awjo=; b=AsVBYf7Igg4Ia+r 5IESUXQktVySO/fkC2gAe3mWMZ4jQz3UPO8xba8EnTlxU/hoV3loRacmWija8+oJ /1GGPkMYk2fko8EQmZFBYgEjWGj7adFrq8AZB4itMEDevEayEnDpPbgw5ooszo9c Ue3n3+pW/ayx0dqco6shKeaPsy0E= 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:From:To:Cc:Subject:References:X-Yow:Date:In-Reply-To:Message-ID:User-Agent:MIME-Version:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=j77UCJprgvgRGaN0ARtyzuK0I60X06HenlVlYeHbDtrBLtlyDYiPlk5+YfI6m6 teG1N96qevNF9tazK/ZJ4Vqf9+hu40gDelAu9xCiQ1Y+fxfQF7i1cO4/jrz/eJRv 4AfEGfkHxBnIS88f+8KOxZK+FnlaXMJTEM5pPWaqcgNTQ=; Received: (qmail 22479 invoked by alias); 21 Feb 2013 16:33:38 -0000 Received: (qmail 22281 invoked by uid 22791); 21 Feb 2013 16:33:34 -0000 X-SWARE-Spam-Status: No, hits=-5.3 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 21 Feb 2013 16:33:25 +0000 Received: from relay1.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 04B63A3B99; Thu, 21 Feb 2013 17:33:24 +0100 (CET) From: Andreas Schwab To: Tobias Burnus Cc: gcc patches , gfortran Subject: Re: Fix some texinfo 5.0 warnings in gcc/doc + libiberty References: <512645B2.9040400@net-b.de> X-Yow: I was in EXCRUCIATING PAIN until I started reading JACK AND JILL Magazine!! Date: Thu, 21 Feb 2013 17:33:23 +0100 In-Reply-To: <512645B2.9040400@net-b.de> (Tobias Burnus's message of "Thu, 21 Feb 2013 17:05:06 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.93 (gnu/linux) MIME-Version: 1.0 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 Tobias Burnus writes: > PS: I tried the following libiberty patch; it fixes a warning with texinfo > 5.0. But I do not include it as it fails for some reason with an error > with texinfo 4.13: > ../../libiberty/libiberty.texi:250: Prev field of node `Functions' not > pointed to. > ../../libiberty//obstacks.texi:1: This node (Obstacks) has the bad Next. > ... obstacks.texi is using @chapter when it should use @subsection, so it needs to be bracketed with @lowersections/@raisesections, like this: Andreas. diff --git a/libiberty/libiberty.texi b/libiberty/libiberty.texi index 74f70d2..f1e4bdd 100644 --- a/libiberty/libiberty.texi +++ b/libiberty/libiberty.texi @@ -82,8 +82,6 @@ License; for more information, see @ref{Library Copying}. * Functions:: Available functions, macros, and global variables. -* Obstacks:: Object Stacks. - * Licenses:: The various licenses under which libiberty sources are distributed. @@ -245,7 +243,11 @@ central location from which to use, maintain, and distribute them. @c This is generated from the glibc manual using a make-obstacks-texi.sh @c script of Phil's. Hope it's accurate. +@lowersections +@lowersections @include obstacks.texi +@raisesections +@raisesections @node Functions @chapter Function, Variable, and Macro Listing. diff --git a/libiberty/obstacks.texi b/libiberty/obstacks.texi index a1b1b47..67780aa 100644 --- a/libiberty/obstacks.texi +++ b/libiberty/obstacks.texi @@ -1,4 +1,4 @@ -@node Obstacks,Licenses,Functions,Top +@node Obstacks @chapter Obstacks @cindex obstacks