]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR other/9813 (misplaced paragraph in Constructing Calls node)
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>
Fri, 21 Mar 2003 15:02:35 +0000 (15:02 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Fri, 21 Mar 2003 15:02:35 +0000 (15:02 +0000)
PR doc-bug/9813
* doc/extend.texi: Move misplaced paragraph about underscores in
variables in macros.

From-SVN: r64664

gcc/ChangeLog
gcc/doc/extend.texi

index 11e1b44b02620f68578221be777fa3797356712b..9a637af46c755361fb46db68b1dfae7cb48ee7f1 100644 (file)
@@ -1,3 +1,9 @@
+2003-03-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+       PR doc-bug/9813
+       * doc/extend.texi: Move misplaced paragraph about underscores in
+       variables in macros.
+
 2003-03-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
             Richard Henderson  <rth@redhat.com>
 
index 19e13f4e157a723724a89fe3fb86a2f5fb985e82..cfc1d22223721b00a8d2135b77c59bc4ea2567a2 100644 (file)
@@ -843,19 +843,6 @@ the containing function.  You should specify, for @var{result}, a value
 returned by @code{__builtin_apply}.
 @end deftypefn
 
-@cindex underscores in variables in macros
-@cindex @samp{_} in variables in macros
-@cindex local variables in macros
-@cindex variables, local, in macros
-@cindex macros, local variables in
-
-The reason for using names that start with underscores for the local
-variables is to avoid conflicts with variable names that occur within the
-expressions that are substituted for @code{a} and @code{b}.  Eventually we
-hope to design a new form of declaration syntax that allows you to declare
-variables whose scopes start only after their initializers; this will be a
-more reliable way to prevent such conflicts.
-
 @node Typeof
 @section Referring to a Type with @code{typeof}
 @findex typeof
@@ -906,6 +893,19 @@ arithmetic type and evaluates each of its arguments exactly once:
     _a > _b ? _a : _b; @})
 @end example
 
+@cindex underscores in variables in macros
+@cindex @samp{_} in variables in macros
+@cindex local variables in macros
+@cindex variables, local, in macros
+@cindex macros, local variables in
+
+The reason for using names that start with underscores for the local
+variables is to avoid conflicts with variable names that occur within the
+expressions that are substituted for @code{a} and @code{b}.  Eventually we
+hope to design a new form of declaration syntax that allows you to declare
+variables whose scopes start only after their initializers; this will be a
+more reliable way to prevent such conflicts.
+
 @noindent
 Some more examples of the use of @code{typeof}: