Add missing parenthesis in manywarnings example
authorJames Youngman <jay@gnu.org>
Thu, 8 Apr 2010 02:02:12 +0000 (03:02 +0100)
committerEric Blake <eblake@redhat.com>
Fri, 9 Apr 2010 20:39:45 +0000 (14:39 -0600)
ChangeLog
doc/manywarnings.texi

index 4957393..e89c108 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
index d3edf1f..cb2cf29 100644 (file)
@@ -18,7 +18,7 @@ nw="$nw -Wtraditional"          # All compilers nowadays support ANSI C
 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