rxvt-tabbed-new icon indicating copy to clipboard operation
rxvt-tabbed-new copied to clipboard

something was broken, i couldn't find out what's wrong :D

Open Helius opened this issue 10 years ago • 1 comments

hi ) urxvt: perl hook 0 evaluation error: /home/eugene/.urxvt/ext/tabbedex: syntax error at /home/eugene/.urxvt/ext/tabbedex line 669, near "$hook qw(start destroy user_command key_press property_notify add_lines)" syntax error at /home/eugene/.urxvt/ext/tabbedex line 681, near "}

}"

This is perl 5, version 18, subversion 2 (v5.18.2) Ubuntu 12.04

Helius avatar Dec 19 '14 20:12 Helius

Use this patch:

--- tabbed_new.orig 2016-05-05 11:58:26.948705000 +0300
+++ tabbed_new  2016-05-05 11:58:52.869972000 +0300
@@ -426,7 +426,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\} or return;

iron-udjin avatar May 05 '16 09:05 iron-udjin