diff options
author | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-21 15:25:56 +0000 |
---|---|---|
committer | shebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-21 15:25:56 +0000 |
commit | 3db5236b6fea66843c1f26efd54e7b8e0605b88b (patch) | |
tree | b1f04a24541a040bf15be9c8b6793290d24f81e5 /gcc/doc/cppinternals.texi | |
parent | e5272b2c5d7bbb8efc305d033e703ec0075b28d5 (diff) | |
download | gcc-3db5236b6fea66843c1f26efd54e7b8e0605b88b.tar.gz |
* 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".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43485 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/cppinternals.texi')
-rw-r--r-- | gcc/doc/cppinternals.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/cppinternals.texi b/gcc/doc/cppinternals.texi index 7fd1b8919b0..44e42ee3dd5 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 |