changeset 32884:f0d9e4b38c5f

Add missing parenthesis in manywarnings example
author James Youngman <jay@gnu.org>
date Thu, 08 Apr 2010 03:02:12 +0100
parents 7b3a242d1270
children 3e43d7e82a67
files ChangeLog doc/manywarnings.texi
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Apr 09 22:36:26 2010 +0200
+++ b/ChangeLog	Thu Apr 08 03:02:12 2010 +0100
@@ -1,3 +1,8 @@
+2010-04-08  James Youngman  <jay@gnu.org>
+
+	* doc/manywarnings.texi (manywarnings): Add missing parenthesis in
+	the example.
+
 2010-04-09  Jim Meyering  <meyering@redhat.com>
 
 	maint.mk: print better diagnostic when there is no $(_hv_file)
--- a/doc/manywarnings.texi	Fri Apr 09 22:36:26 2010 +0200
+++ b/doc/manywarnings.texi	Thu Apr 08 03:02:12 2010 +0100
@@ -18,7 +18,7 @@
 nw="$nw -Wconversion"           # These warnings usually don't point to mistakes.
 nw="$nw -Wsign-conversion"      # Likewise.
 # Enable all GCC warnings not in this list.
-gl_MANYWARN_COMPLEMENT[warnings], [$warnings], [$nw])
+gl_MANYWARN_COMPLEMENT([warnings], [$warnings], [$nw])
 for w in $warnings; do
   gl_WARN_ADD([$w])
 done