diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-10-28 02:00:31 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-10-28 02:00:31 +0100 |
commit | 78466c0eb542990e45156cab8cce4cf645b3731f (patch) | |
tree | 33d94c787a6ded805929c1022260774aeed28551 /gcc/doc/cpp.texi | |
parent | d78aa55cc9489d582a46e19478b0438d7382423a (diff) | |
download | gcc-78466c0eb542990e45156cab8cce4cf645b3731f.tar.gz |
contrib.texi, [...]: Improve Texinfo formatting.
* doc/contrib.texi, doc/cpp.texi, doc/cppopts.texi,
doc/extend.texi, doc/gcov.texi, doc/install.texi, doc/invoke.texi,
doc/libgcc.texi, doc/md.texi, doc/passes.texi,
doc/sourcebuild.texi, doc/tm.texi: Improve Texinfo formatting.
From-SVN: r89725
Diffstat (limited to 'gcc/doc/cpp.texi')
-rw-r--r-- | gcc/doc/cpp.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index e0282e09173..efaf86130bc 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -901,7 +901,7 @@ This has two effects. First, directories appearing before the quote marks. Directories after @option{-I-} are searched for all headers. Second, the directory containing the current file is not searched for anything, unless it happens to be one of the directories -named by an @option{-I} switch. @option{-I-} is deprecated, -iquote +named by an @option{-I} switch. @option{-I-} is deprecated, @option{-iquote} should be used instead. @option{-I. -I-} is not the same as no @option{-I} options at all, and does @@ -3807,10 +3807,10 @@ characters in the constant than would fit in the target @code{int} the compiler issues a warning, and the excess leading characters are ignored. -For example, 'ab' for a target with an 8-bit @code{char} would be -interpreted as @w{(int) ((unsigned char) 'a' * 256 + (unsigned char) -'b')}, and '\234a' as @w{(int) ((unsigned char) '\234' * 256 + (unsigned -char) 'a')}. +For example, @code{'ab'} for a target with an 8-bit @code{char} would be +interpreted as @w{@samp{(int) ((unsigned char) 'a' * 256 + (unsigned char) +'b')}}, and @code{'\234a'} as @w{@samp{(int) ((unsigned char) '\234' * +256 + (unsigned char) 'a')}}. @item Source file inclusion. |