From: root Date: Sat, 10 May 2008 22:36:46 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=a5d4c7bb4dbc039749443398ef7c07a5199b9a48;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index f826a675..42d4b55c 100644 --- 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. diff --git a/src/urxvt.pm b/src/urxvt.pm index 610328c1..bab0a498 100644 --- a/src/urxvt.pm +++ b/src/urxvt.pm @@ -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"; }