From bc6f0eb89fe0b02383544d1859ae4baf155ee40e Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 5 Oct 2010 19:02:17 +0200 Subject: [PATCH] Fixed calling of multi-parameter functions Thanks to Mosquitoe for the fix. --- UCW/Temple.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UCW/Temple.pm b/UCW/Temple.pm index 6efa090..ff7c4cf 100644 --- a/UCW/Temple.pm +++ b/UCW/Temple.pm @@ -84,7 +84,7 @@ sub eval_func($$) { } # print "Cond stack: @cond\n"; } else { - my $res = eval_if_ok("$f($a)"); + my $res = eval_if_ok("$f $a"); out $res if defined $res; } } -- 2.39.2