From 624daa09dd9d85e62b972d5deccd352c17b7f4ee Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 8 Jan 2009 13:46:19 +0000 Subject: make it clear the func is local --- URPM.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/URPM.pm b/URPM.pm index 8f21c0f..194ecfa 100644 --- a/URPM.pm +++ b/URPM.pm @@ -174,7 +174,7 @@ sub traverse_tag { $count; } -sub parse_hdlist_or_synthesis { +sub _parse_hdlist_or_synthesis { my ($parse_func, $urpm, $file, %options) = @_; my $previous_indice = @{$urpm->{depslist}}; @@ -194,8 +194,8 @@ sub parse_hdlist_or_synthesis { (); } } -sub parse_synthesis { parse_hdlist_or_synthesis(\&parse_synthesis__XS, @_) } -sub parse_hdlist { parse_hdlist_or_synthesis(\&parse_hdlist__XS, @_) } +sub parse_synthesis { _parse_hdlist_or_synthesis(\&parse_synthesis__XS, @_) } +sub parse_hdlist { _parse_hdlist_or_synthesis(\&parse_hdlist__XS, @_) } sub add_macro { my ($s) = @_; -- cgit v1.2.1