Stan Mulder wrote:

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.


I should have added that without the backslash the split command was splitting the exclude list into individual characters.


_______________________________________________ Gnump3d-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnump3d-users

Reply via email to