*** empty log message ***
authorroot <root>
Sat, 10 May 2008 22:36:46 +0000 (22:36 +0000)
committerroot <root>
Sat, 10 May 2008 22:36:46 +0000 (22:36 +0000)
Changes
src/urxvt.pm

diff --git a/Changes b/Changes
index f826a67..42d4b55 100644 (file)
--- a/Changes
+++ b/Changes
@@ -35,6 +35,7 @@ TODO: implement initial chdir for tabs by making it a resource?
        - made tabs moveable (based on a patch by Petr Machata).
         - support relative paths for RXVT_SOCKET in urxvtd.
         - better diagnostic on 0x0 window geometries.
+        - update Anyevent API to version 3.4 and above.
 
 9.02 Tue Jan 29 11:58:36 CET 2008
        - the "exg makes everybody happy" release.
index 610328c..bab0a49 100644 (file)
@@ -1093,7 +1093,7 @@ work.
 
 =cut
 
-our $VERSION = 1;
+our $VERSION = '3.4';
 
 $INC{"urxvt/anyevent.pm"} = 1; # mark us as there
 push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::];
@@ -1134,20 +1134,6 @@ sub DESTROY {
    $_[0][1]->stop;
 }
 
-sub condvar {
-   bless \my $flag, urxvt::anyevent::
-}
-
-sub broadcast {
-   ${$_[0]}++;
-}
-
-sub wait {
-   unless (${$_[0]}) {
-      Carp::croak "AnyEvent->condvar blocking wait unsupported in urxvt, use a non-blocking API";
-   }
-}
-
 sub one_event {
    Carp::croak "AnyEvent->one_event blocking wait unsupported in urxvt, use a non-blocking API";
 }