for $x (qw(a b c)) { ... }
+This is being deprecated because C<qw(a b c)> is supposed to mean
+C<"a", "b", "c"> not C<("a", "b", "c")>. I.e. this doesn't compile:
+
+ for my $i "a", "b", "c" { }
+
+So neither should this:
+
+ for my $i qw(a b c) {}
+
+But these both work:
+
+ for my $i ("a", "b", "c") { }
+ for my $i (qw(a b c)) {}
+
+Note that this does not change the behavior of cases like:
+
+ use POSIX qw(setlocale localeconv)
+ our @EXPORT = qw(foo bar baz);
+
+Where a list with our without parentheses could have been provided.
+
=head2 C<\N{BELL}>
This is because Unicode is using that name for a different character.