aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/cppinternals.texi
diff options
context:
space:
mode:
authorStan Shebs <shebs@apple.com>2001-06-21 15:25:56 +0000
committerStan Shebs <shebs@gcc.gnu.org>2001-06-21 15:25:56 +0000
commit2147b1541cb6a841b54cf92f025ddc62857998e5 (patch)
treeb1f04a24541a040bf15be9c8b6793290d24f81e5 /gcc/doc/cppinternals.texi
parent470042c71248ae02ba02e8a4dba8b03df3230943 (diff)
downloadgcc-2147b1541cb6a841b54cf92f025ddc62857998e5.zip
gcc-2147b1541cb6a841b54cf92f025ddc62857998e5.tar.gz
gcc-2147b1541cb6a841b54cf92f025ddc62857998e5.tar.bz2
contrib.texi, [...]: Use the correct name "Objective-C" everywhere instead of "Objective C".
* doc/contrib.texi, doc/cpp.texi, doc/cppinternals.texi, doc/extend.texi, doc/gcc.texi, doc/install.texi, doc/invoke.texi, doc/objc.texi, doc/tm.texi: Use the correct name "Objective-C" everywhere instead of "Objective C". From-SVN: r43485
Diffstat (limited to 'gcc/doc/cppinternals.texi')
-rw-r--r--gcc/doc/cppinternals.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/cppinternals.texi b/gcc/doc/cppinternals.texi
index 7fd1b89..44e42ee 100644
--- a/gcc/doc/cppinternals.texi
+++ b/gcc/doc/cppinternals.texi
@@ -72,7 +72,7 @@ into another language, under the above conditions for modified versions.
The GNU C preprocessor in GCC 3.0 has been completely rewritten. It is
now implemented as a library, cpplib, so it can be easily shared between
a stand-alone preprocessor, and a preprocessor integrated with the C,
-C++ and Objective C front ends. It is also available for use by other
+C++ and Objective-C front ends. It is also available for use by other
programs, though this is not recommended as its exposed interface has
not yet reached a point of reasonable stability.
@@ -90,7 +90,7 @@ Identifiers, macro expansion, hash nodes, lexing.
@menu
* Conventions:: Conventions used in the code.
-* Lexer:: The combined C, C++ and Objective C Lexer.
+* Lexer:: The combined C, C++ and Objective-C Lexer.
* Whitespace:: Input and output newlines and whitespace.
* Hash Nodes:: All identifiers are hashed.
* Macro Expansion:: Macro expansion algorithm.
@@ -191,7 +191,7 @@ we don't allow the terminators of header names to be escaped; the first
@samp{"} or @samp{>} terminates the header name.
Interpretation of some character sequences depends upon whether we are
-lexing C, C++ or Objective C, and on the revision of the standard in
+lexing C, C++ or Objective-C, and on the revision of the standard in
force. For example, @samp{::} is a single token in C++, but two
separate @samp{:} tokens, and almost certainly a syntax error, in C.
Such cases are handled in the main function @samp{_cpp_lex_token}, based