Do a Google search for "mac svn client".  The Wikipedia page that
compares svn clients includes KDEsvn, Qsvn, Subcommander svnX, WebSVN,
and xcode (included with OS X 10.5).

I have and use Xcode as my development environment. I will have to go read about svn. 

That's all the right code.  How are you determining the bailout?  We use
the following, or something similar (from fractals.c):

int near fpMODbailout(void)
{
  tempsqrx=sqr(new.x);
  tempsqry=sqr(new.y);
  magnitude = tempsqrx + tempsqry;
  if(magnitude >= rqlim) return(1);
  old = new;
  return(0);
}

Where rqlim normally defaults to 4.

Thanks for checking the code. I was thinking I was missing some code. I don't do anything any different for the bailout with tdis as compared to other coloring modes which work fine. Correct me if I am wrong, but this looks like the normal bailout test "|z| < rqlim". Could there be some difference in the color mapping (like forcing logmap or something) that is forced when tdis is in effect?

--
Mike Frazier
www.fracton.org