From: James Youngman Date: Thu, 8 Apr 2010 02:02:12 +0000 (+0100) Subject: Add missing parenthesis in manywarnings example X-Git-Tag: stable/20100424~71 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=bcd59b9;p=gnulib.git Add missing parenthesis in manywarnings example (cherry picked from commit 85f6993aa94a87689fb1c4d49e5be4f271cb97d1) --- diff --git a/ChangeLog b/ChangeLog index 6c5122db1..4ed2fb0f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-04-08 James Youngman + + * doc/manywarnings.texi (manywarnings): Add missing parenthesis in + the example. + 2010-04-09 Jim Meyering init.sh: run tr in the "C" locale to avoid multibyte interpretation diff --git a/doc/manywarnings.texi b/doc/manywarnings.texi index d3edf1fb5..cb2cf295e 100644 --- a/doc/manywarnings.texi +++ b/doc/manywarnings.texi @@ -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