> addEvent('click',function(){return f() && false;})
> amounts to the same thing.
I know it's the same as
f(); return false;
but it might be more easily interpreted as wrapping the function and
its forced-false return in one, and that's closer to what the OP was
wondering about (the two-at-once/wrapper concept).
> I still don't see the need here. "return false" is just not that big
> of a burden.
Me neither, just playing with other ways....
--Sandy
