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/extend.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/extend.texi')
-rw-r--r-- | gcc/doc/extend.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index f97f9abd986..006251bd963 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -14,7 +14,7 @@ any of these features is used.) To test for the availability of these features in conditional compilation, check for a predefined macro @code{__GNUC__}, which is always defined under GNU CC. -These extensions are available in C and Objective C. Most of them are +These extensions are available in C and Objective-C. Most of them are also available in C++. @xref{C++ Extensions,,Extensions to the C++ Language}, for extensions that apply @emph{only} to C++. @@ -1797,7 +1797,7 @@ been called. Functions with these attributes are useful for initializing data that will be used implicitly during the execution of the program. -These attributes are not currently implemented for Objective C. +These attributes are not currently implemented for Objective-C. @item unused This attribute, attached to a function, means that the function is meant @@ -2072,7 +2072,7 @@ Preprocessing Directives, cpp, The C Preprocessor}. This section describes the syntax with which @code{__attribute__} may be used, and the constructs to which attribute specifiers bind, for the C -language. Some details may vary for C++ and Objective C. Because of +language. Some details may vary for C++ and Objective-C. Because of infelicities in the grammar for attributes, some forms described here may not be successfully parsed in all cases. @@ -2866,7 +2866,7 @@ and nested functions (@pxref{Nested Functions}). Using @option{-Winline} will warn when a function marked @code{inline} could not be substituted, and will give the reason for the failure. -Note that in C and Objective C, unlike C++, the @code{inline} keyword +Note that in C and Objective-C, unlike C++, the @code{inline} keyword does not affect the linkage of the function. @cindex automatic @code{inline} for C++ member fns |