This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix pointers between nodes in manual (bug 10038)


Bug 10038 reports a problem with pointers between nodes in the manual
not matching the order of those nodes.  This is caused by an @menu
listing the nodes in the wrong order; this patch fixes that order.

Tested with "make info html pdf" and verifying that the generated HTML
manual after the patch no longer had the issue described in that bug,
whereas before the patch it did.

2012-09-06  Joseph Myers  <joseph@codesourcery.com>

	[BZ #10038]
	* manual/memory.texi (Memory): Make order of menu items match
	order of sections.

diff --git a/manual/memory.texi b/manual/memory.texi
index 35fed23..fba3a2c 100644
--- a/manual/memory.texi
+++ b/manual/memory.texi
@@ -16,8 +16,8 @@ and allocation of real memory.
 @menu
 * Memory Concepts::             An introduction to concepts and terminology.
 * Memory Allocation::           Allocating storage for your program data
-* Locking Pages::               Preventing page faults
 * Resizing the Data Segment::   @code{brk}, @code{sbrk}
+* Locking Pages::               Preventing page faults
 @end menu
 
 Memory mapped I/O is not discussed in this chapter.  @xref{Memory-mapped I/O}.

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]