# HG changeset patch # User Jaroslav Hajek # Date 1219244484 14400 # Node ID 30d15ab0ce01de0998cea02261534167bd07cdce # Parent 827d4f24ec6cdb6c22971326685ffd3d6d9eca0d avoid problematic subfunction call in an anonymous function diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2008-08-20 Jaroslav Hajek + + * pkg/pkg.m (configure_make): Pass handle to is_architecture_dependent + directly. + 2008-08-20 David Bateman * plot/__go_draw_axes__.m: Don't set pm3d implicit if the plot diff --git a/scripts/pkg/pkg.m b/scripts/pkg/pkg.m --- a/scripts/pkg/pkg.m +++ b/scripts/pkg/pkg.m @@ -1302,7 +1302,7 @@ if (isempty (filenames)) idx = []; else - idx = cellfun (@(x) is_architecture_dependent (x), filenames); + idx = cellfun (@is_architecture_dependent, filenames); endif archdependent = filenames (idx); archindependent = filenames (!idx);