projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
77a4069
)
Questionable construct.
Rafael Garcia-Suarez [Tue, 11 Mar 2003 19:44:54 +0000 (19:44 +0000)]
p4raw-id: //depot/perl@18926
pod/perltooc.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perltooc.pod
b/pod/perltooc.pod
index
667f9fc
..
78b6135
100644
(file)
--- a/
pod/perltooc.pod
+++ b/
pod/perltooc.pod
@@
-842,7
+842,7
@@
ones.
# invoked as class method or object method
sub has_attribute {
my($self, $attr) = @_;
- my $class = ref $self if $self;
+ my $class = ref($self) || $self;
return exists $class->{$attr};
}