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]
Other format: [Raw text]

Misspelled command in invoke.texi


Howdy,

invoke.texi misspelled "@item" as "@litem", which caused bootstrap
to fail with the following error:

 makeinfo --split-size=5000000  -I ../../gcc/gcc/doc -I ../../gcc/gcc/doc/include \
   -o ../../gcc/gcc/doc/gcc.info ../../gcc/gcc/doc/gcc.texi
 ../../gcc/gcc/doc/invoke.texi:3220: Unknown command `litem'.
 makeinfo: Removing output file `../../gcc/gcc/doc/gcc.info' due to errors; use --force to preserve.
 make[2]: *** [../../gcc/gcc/doc/gcc.info] Error 2

The following patch changes it to "@item".

Tested by running the command that was failing.

Committed as obvious.

-- 
Matt Kraai          kraai@alumni.cmu.edu          Debian GNU/Linux

	* doc/invoke.texi: Fix misspelling of "@item".

Index: doc/invoke.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/doc/invoke.texi,v
retrieving revision 1.313
diff -3 -c -p -r1.313 invoke.texi
*** doc/invoke.texi	9 Jul 2003 01:20:24 -0000	1.313
--- doc/invoke.texi	9 Jul 2003 03:56:24 -0000
*************** Dump after null pointer elimination pass
*** 3217,3223 ****
  @item U
  @opindex dU
  Dump callgraph and unit-at-a-time optimization @file{@var{file}.00.unit}.
! @litem w
  @opindex dw
  Dump after the second flow pass, to @file{@var{file}.29.flow2}.
  @item W
--- 3217,3223 ----
  @item U
  @opindex dU
  Dump callgraph and unit-at-a-time optimization @file{@var{file}.00.unit}.
! @item w
  @opindex dw
  Dump after the second flow pass, to @file{@var{file}.29.flow2}.
  @item W


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