X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/67223abfdf21b3c53bbb830f223663c65b8c187b..a40ea2781b794da7c0284a484f581cd5390c8a72:/SL/MoreCommon.pm diff --git a/SL/MoreCommon.pm b/SL/MoreCommon.pm index 6c292bab8..e93dd172e 100644 --- a/SL/MoreCommon.pm +++ b/SL/MoreCommon.pm @@ -1,15 +1,17 @@ package SL::MoreCommon; require Exporter; -@ISA = qw(Exporter); +our @ISA = qw(Exporter); -@EXPORT = qw(save_form restore_form compare_numbers any cross); -@EXPORT_OK = qw(ary_union ary_intersect ary_diff listify); +our @EXPORT = qw(save_form restore_form compare_numbers any cross); +our @EXPORT_OK = qw(ary_union ary_intersect ary_diff listify); use YAML; use SL::AM; +use strict; + sub save_form { $main::lxdebug->enter_sub(); @@ -163,6 +165,5 @@ sub listify { my @ary = scalar @_ > 1 ? @_ : ref $_[0] eq 'ARRAY' ? @{ $_[0] } : (@_); return wantarray ? @ary : scalar @ary; } -+ 1;