diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/_query.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/_query.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/_query.pm b/Master/tlpkg/tlperl/lib/URI/_query.pm index a6038a3717a..93288ca770c 100644 --- a/Master/tlpkg/tlperl/lib/URI/_query.pm +++ b/Master/tlpkg/tlperl/lib/URI/_query.pm @@ -1,6 +1,8 @@ package URI::_query; use strict; +use warnings; + use URI (); use URI::Escape qw(uri_unescape); @@ -88,6 +90,6 @@ sub query_keywords } # Some URI::URL compatibility stuff -*equery = \&query; +sub equery { goto &query } 1; |