|
From: Ilya M. <m_...@us...> - 2003-03-26 17:14:58
|
Update of /cvsroot/perl-xml/XML-LibXML-XPathContext
In directory sc8-pr-cvs1:/tmp/cvs-serv690
Modified Files:
XPathContext.pm
Log Message:
Make sure that indentation is consistently 4 spaces
Index: XPathContext.pm
===================================================================
RCS file: /cvsroot/perl-xml/XML-LibXML-XPathContext/XPathContext.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- XPathContext.pm 26 Mar 2003 16:22:16 -0000 1.13
+++ XPathContext.pm 26 Mar 2003 17:14:52 -0000 1.14
@@ -61,27 +61,27 @@
}
sub registerFunction {
- my ($self, $name, $sub)=@_;
- $self->registerFunctionNS($name,undef,$sub);
- return;
+ my ($self, $name, $sub) = @_;
+ $self->registerFunctionNS($name, undef, $sub);
+ return;
}
sub unregisterFunction {
- my ($self, $name)=@_;
- $self->registerFunctionNS($name,undef,undef);
- return;
+ my ($self, $name) = @_;
+ $self->registerFunctionNS($name, undef, undef);
+ return;
}
sub unregisterFunctionNS {
- my ($self, $name, $ns)=@_;
- $self->registerFunctionNS($name,$ns,undef);
- return;
+ my ($self, $name, $ns) = @_;
+ $self->registerFunctionNS($name, $ns, undef);
+ return;
}
sub unregisterVarLookupFunc {
- my ($self)=@_;
- $self->registerVarLookupFunc(undef,undef);
- return;
+ my ($self) = @_;
+ $self->registerVarLookupFunc(undef, undef);
+ return;
}
# extension function perl dispatcher
@@ -290,7 +290,6 @@
=item B<unregisterFunction($name)>
Same as I<unregisterFunctionNS> but without a namespace.
-
=item B<findnodes($xpath)>
|