In random.pm, this line didn't work for me:
my @EXCLUDED = split( /|/, $ignore );
I had to add a backslash thusly:
my @EXCLUDED = split( /\|/, $ignore );
And now it works. Hmmm.
Stan
_______________________________________________ Gnump3d-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnump3d-users
