diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:19:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-11 02:19:36 +0000 |
commit | f8fa8660f722e12a6d787a99c16394dd8033a97f (patch) | |
tree | 5dd8ebb83d1ac255301593323404f1b112d42c6b /MDK/Common.pm.pl | |
parent | 192dba75d27ad63be7de152c29a2aa641276d453 (diff) | |
download | perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.gz perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.bz2 perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.tar.xz perl-MDK-Common-f8fa8660f722e12a6d787a99c16394dd8033a97f.zip |
- perl_checker:
- allow $_o_XXX parameter name which is both unused and optional (same for $_b_XXX)
- shift is a ONE_SCALAR_PARA so that $box->pack_start(shift @l, 0, 0, 4) is parsed correctly
- in arrange_global_vars_declared(), don't keep anything in global_vars_declared, better
create shadow packages to contain them
- much better merging of multiple files defining functions in the same package.
This fixes the bad behaviour when using the cache (esp. do_pkgs, but it was even worse
with things in ugtk2.pm)
- adapt to perl-Gtk2 xs (which replace the perl-GTK2 inline version)
Diffstat (limited to 'MDK/Common.pm.pl')
-rw-r--r-- | MDK/Common.pm.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MDK/Common.pm.pl b/MDK/Common.pm.pl index d60dabe..146e09d 100644 --- a/MDK/Common.pm.pl +++ b/MDK/Common.pm.pl @@ -71,7 +71,7 @@ use vars qw(@ISA @EXPORT $VERSION); #); # perl_checker: RE-EXPORT-ALL @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -$VERSION = "1.1.5"; +$VERSION = "1.1.6"; 1; EOF |