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]

Add missing @ in install.texi


Howdy,

One of the @itemize commands in install.texi was missing an @
before "bullet", which resulted in the following output:

     The following systems are the only ones where it makes a difference
     whether you use the GNU assembler.  On any other system,
     `--with-gnu-as' has no effect.

        bullet `hppa1.0-ANY-ANY'

        bullet `hppa1.1-ANY-ANY'

        ...

The following patch adds the missing @.

Tested by building the info and dvi files and verifying that the
info file contains "*".

Committed as obvious.

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

	* doc/install.texi: Add missing @.

Index: gcc/doc/install.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/doc/install.texi,v
retrieving revision 1.210
diff -3 -c -p -r1.210 install.texi
*** gcc/doc/install.texi	5 Jul 2003 00:19:46 -0000	1.210
--- gcc/doc/install.texi	10 Jul 2003 01:31:46 -0000
*************** The following systems are the only ones 
*** 734,740 ****
  whether you use the GNU assembler.  On any other system,
  @option{--with-gnu-as} has no effect.
  
! @itemize bullet
  @item @samp{hppa1.0-@var{any}-@var{any}}
  @item @samp{hppa1.1-@var{any}-@var{any}}
  @item @samp{i386-@var{any}-sysv}
--- 734,740 ----
  whether you use the GNU assembler.  On any other system,
  @option{--with-gnu-as} has no effect.
  
! @itemize @bullet
  @item @samp{hppa1.0-@var{any}-@var{any}}
  @item @samp{hppa1.1-@var{any}-@var{any}}
  @item @samp{i386-@var{any}-sysv}


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