is support for $.live(fn) planed?

is support for $.live(fn) planed?


I was looking for replacement for $(sel).livequery(function() {}) in
1.3b2 but it seems not to be planed.
Since most of the livequery functionality will become obsolete by .live
() may be this also could be covered?
If so, porting a site with livequery+jquery1.2.x to jquery1.3 would be
as simple as add the folowing lines:
jQuery.fn.extend({
    livequery:function() {
        return jQuery.fn.live.apply(this, arguments);
    },
    expire: function() {
        return jQuery.fn.die.apply(this, arguments);
    }
});