greetings, I want to override a sub in CGI.pm that is auotloaded. I still need to call the original sub, so I have to stash a reference to it.
Is there any way to do this w/o having to uselessly call the sub one time, so that it's instantiated? I haven't been able to find anyway to do it without calling it at least once, then I can stash its address my $orig = \&CGI::subname and proceed to override it.