]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Improve VLA wording in NEWS
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 Apr 2024 18:48:31 +0000 (11:48 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 30 Apr 2024 18:49:16 +0000 (11:49 -0700)
Thanks to a suggestion by Werner Lemberg in:
https://lists.gnu.org/r/autoconf/2024-04/msg00009.html

NEWS

diff --git a/NEWS b/NEWS
index 60c6dcdd7f5650f0ccad9cc5bdcd087cab8419ea..be7cb8ca4a6e6b4da7a068af830bc954e68a819d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,11 +10,11 @@ GNU Autoconf NEWS - User visible changes.
   alignas, alignof, bool, constexpr, false, nullptr, static_assert,
   thread_local, typeof, typeof_unqual, true.
 
-*** AC_PROG_CC no longer tests for VLAs, or whether __STDC__ is defined.
-  This ports better to MSVC, which does not support variable length
-  arrays and does not define __STDC__.  Although C99 requires VLAs,
-  they are optional in C11 and later.  Programs can use AC_C_VARARRAYS
-  and __STDC_NO_VLA__ to use VLAs if available.
+*** AC_PROG_CC no longer checks __STDC__ or variable length arrays (VLAs).
+  This ports better to MSVC, which does not define __STDC__ and does
+  not support VLAs.  Although C99 requires VLAs, they are optional in
+  C11 and later.  Programs can use AC_C_VARARRAYS and __STDC_NO_VLA__
+  to use VLAs if available.
 
 * Noteworthy changes in release 2.72 (2023-12-22) [release]