changeset 13193:d655bd302ece

Add missing parenthesis in manywarnings example
author James Youngman <jay@gnu.org>
date Thu, 08 Apr 2010 03:02:12 +0100
parents ba35e9647b3b
children 5aec4f35399f
files ChangeLog doc/manywarnings.texi
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- a/doc/manywarnings.texi
+++ b/doc/manywarnings.texi
@@ -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