From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31990 invoked by alias); 7 Nov 2009 18:34:27 -0000 Received: (qmail 31981 invoked by uid 22791); 7 Nov 2009 18:34:27 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 07 Nov 2009 18:34:21 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id AE2732BAC30 for ; Sat, 7 Nov 2009 13:34:19 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id jZYQfyuLDGC2 for ; Sat, 7 Nov 2009 13:34:19 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 6F2F72BAB22 for ; Sat, 7 Nov 2009 13:34:19 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 32BD3F5905; Sat, 7 Nov 2009 10:34:07 -0800 (PST) Date: Sat, 07 Nov 2009 18:34:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: [RFA/doco] Fix missing title in HTML documentation Message-ID: <20091107183407.GN4557@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-11/txt/msg00124.txt.bz2 --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 653 I noticed this while working on cleaning up the nightly generation of the documention on the GDB web site: The gdbint and stabs manuals get an "Untitled" title. For instance, gdbint/index.html: Untitled The attached patch should fix this, while making it consistent with the order of directives used in other manuals such as gdb.texinfo. Tested by regenerating the HTML documentation and verifying the differences (a lot of Untitled get changed appropriately). OK to commit? Thanks, -- Joel --Dxnq1zWXvFF0Q93v Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="doco.diff" Content-length: 1478 commit 408ff8efa0824aa1c89bd73855bf73cecb92db2e Author: Joel Brobecker Date: Sat Nov 7 10:27:34 2009 -0800 2009-11-07 Joel Brobecker * gdbint.texinfo, stabs.texinfo: Move the @setchapternewpage and @settitle directives up to help makeinfo find them. diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 0255c02..dbe1197 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -1,6 +1,8 @@ \input texinfo @c -*- texinfo -*- @setfilename gdbint.info @include gdb-cfg.texi +@settitle @value{GDBN} Internals +@setchapternewpage off @dircategory Software development @direntry * Gdb-Internals: (gdbint). The GNU debugger's internals. @@ -27,8 +29,6 @@ This file documents the internals of the GNU debugger @value{GDBN}. @insertcopying @end ifnottex -@setchapternewpage off -@settitle @value{GDBN} Internals @syncodeindex fn cp @syncodeindex vr cp diff --git a/gdb/doc/stabs.texinfo b/gdb/doc/stabs.texinfo index d28c93d..187232f 100644 --- a/gdb/doc/stabs.texinfo +++ b/gdb/doc/stabs.texinfo @@ -1,5 +1,7 @@ \input texinfo @setfilename stabs.info +@setchapternewpage odd +@settitle STABS @c @finalout @@ -30,8 +32,6 @@ This document describes the stabs debugging symbol tables. @insertcopying @end ifnottex -@setchapternewpage odd -@settitle STABS @titlepage @title The ``stabs'' debug format @author Julia Menapace, Jim Kingdon, David MacKenzie --Dxnq1zWXvFF0Q93v--