Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'cj/maint-gitpm-fix-maybe-self' into maint
author
Junio C Hamano
<gitster@pobox.com>
Sun, 9 Nov 2008 00:50:25 +0000
(16:50 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 9 Nov 2008 00:50:25 +0000
(16:50 -0800)
* cj/maint-gitpm-fix-maybe-self:
Git.pm: do not break inheritance
perl/Git.pm
patch
|
blob
|
history
raw
(from parent 1:
8b1981d
)
diff --git
a/perl/Git.pm
b/perl/Git.pm
index 6aab712e6ac6513b0b46958d93d536ef975276b4..ba94453781c98a97a95c65999873fc28b013340d 100644
(file)
--- a/
perl/Git.pm
+++ b/
perl/Git.pm
@@
-1203,8
+1203,7
@@
=head1 COPYRIGHT
# the method was called upon an instance and (undef, @args) if
# it was called directly.
sub _maybe_self {
- # This breaks inheritance. Oh well.
- ref $_[0] eq 'Git' ? @_ : (undef, @_);
+ UNIVERSAL::isa($_[0], 'Git') ? @_ : (undef, @_);
}
# Check if the command id is something reasonable.