Hello,

I'm using rxvt-unicode in Archlinux x86_64 distribution, new perl
version 5.18 deprecates plain use of qw(), see
https://metacpan.org/module/RJBS/perl-5.18.0/pod/perldelta.pod#qw-...-can-no-longer-be-used-as-parentheses

I made small simple patch for 'tabbed' which works for me.

---
WBR, Vladimir Lomov

-- 
There is, however, a strange, musty smell in the air that reminds me of
something...hmm...yes...I've got it...there's a VMS nearby, or I'm a Blit.
             -- Larry Wall in Configure from the perl distribution
--- tabbed.orig 2012-09-12 17:32:04.000000000 +0900
+++ tabbed      2013-05-24 13:04:37.000000000 +0900
@@ -402,7 +402,7 @@
 # simply proxies all interesting calls back to the tabbed class.
 
 {
-   for my $hook qw(start destroy key_press property_notify) {
+   for my $hook (qw(start destroy key_press property_notify)) {
       eval qq{
          sub on_$hook {
             my \$parent = \$_[0]{term}{parent}
_______________________________________________
rxvt-unicode mailing list
[email protected]
http://lists.schmorp.de/cgi-bin/mailman/listinfo/rxvt-unicode

Reply via email to