]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* doc/extend.texi (Nested Functions): Update.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 1 Feb 2005 22:45:22 +0000 (22:45 +0000)
committerJoseph Myers <jsm28@gcc.gnu.org>
Tue, 1 Feb 2005 22:45:22 +0000 (22:45 +0000)
From-SVN: r94569

gcc/ChangeLog
gcc/doc/extend.texi

index 054b745832ad3f6c347f7c8b7e8924fc02f52397..735403417384c9bfad287087e1e8624b2f68af44 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-01  Joseph S. Myers  <joseph@codesourcery.com>
+
+       * doc/extend.texi (Nested Functions): Update.
+
 2005-02-01  Richard Henderson  <rth@redhat.com>
 
        PR 19696
index 47eb8a3dc4b879512fe9df76826fe1f312d31d22..eaea96e2245f1341511202e127d7c13a3aa02735 100644 (file)
@@ -1,4 +1,4 @@
-@c Copyright (C) 1988,1989,1992,1993,1994,1996,1998,1999,2000,2001,2002,2003,2004
+@c Copyright (C) 1988,1989,1992,1993,1994,1996,1998,1999,2000,2001,2002,2003,2004,2005
 @c Free Software Foundation, Inc.
 @c This is part of the GCC manual.
 @c For copying conditions, see the file gcc.texi.
@@ -381,8 +381,8 @@ bar (int *array, int offset, int size)
 @end smallexample
 
 Nested function definitions are permitted within functions in the places
-where variable definitions are allowed; that is, in any block, before
-the first statement in the block.
+where variable definitions are allowed; that is, in any block, mixed
+with the other declarations and statements in the block.
 
 It is possible to call the nested function from outside the scope of its
 name by storing its address or passing the address to another function: