This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


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

PATCH[cvs-20000811]: Fix objc documentation


Hi there,

The attached patch fixes some problems with the libobjc documentation;
without the patch, running "make info" fails like this:

  makeinfo ../../../egcs-20000811/libobjc/objc-features.texi
  ../../../egcs-20000811/libobjc/objc-features.texi:8: warning: @menu seen before first node.
  ../../../egcs-20000811/libobjc/objc-features.texi:8: warning: creating `Top' node.
  ../../../egcs-20000811/libobjc/objc-features.texi:15: Node `Top' multiply defined (line 8 is first definition at).
  ../../../egcs-20000811/libobjc/objc-features.texi:8: Node `Top''s Next field not pointed back to.
  ../../../egcs-20000811/libobjc/objc-features.texi:109: This node (`What you can and what you cannot do in +load') is the one with the bad `Prev'.

OK to install?

Cheers.

l8er
manfred

2000-08-11  Manfred Hollstein  <manfredh@redhat.com>

	* objc-features.texi: Move @node Top before @menu.

diff -rup -x CVS -x RCS -x *.o -x *.info* -x *.html* -x *.elc -x *.dvi -x *.orig -x *~ -x version.el egcs-20000811.orig/libobjc/objc-features.texi egcs-20000811/libobjc/objc-features.texi
--- egcs-20000811.orig/libobjc/objc-features.texi	Wed Aug  9 13:17:39 2000
+++ egcs-20000811/libobjc/objc-features.texi	Fri Aug 11 18:34:11 2000
@@ -5,15 +5,15 @@
 @setchapternewpage odd
 @c %**end of header
      
+@node Top, Executing code before main, (dir), (dir)
+@comment  node-name,  next,  previous,  up
+
 @menu
 * Executing code before main::  
 * Type encoding::               
 * Garbage Collection::          
 * Constant string objects::     
 @end menu
-
-@node Top, Executing code before main, (dir), (dir)
-@comment  node-name,  next,  previous,  up
 
 @chapter GNU Objective-C runtime features
 

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