use Exporter (); # use #5
-our $VERSION = "0.77";
+our $VERSION = "0.78";
our @ISA = qw(Exporter);
our @EXPORT_OK = qw( set_style set_style_standard add_callback
concise_subref concise_cv concise_main
elsif ($o =~ /^-stash=(.*)/) {
my $pkg = $1;
no strict 'refs';
- if (!defined %{$pkg.'::'}) {
+ if (! %{$pkg.'::'}) {
eval "require $pkg";
} else {
require Config;
use strict;
use warnings;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
package Tie::Hash ;
no strict 'refs';
# does the "DBM_Filter::$class" exist?
- if ( ! defined %{ "${class}::"} ) {
+ if ( ! %{ "${class}::"} ) {
# Nope, so try to load it.
eval " require $class ; " ;
croak "$caller: Cannot Load DBM Filter '$class': $@" if $@;