Autoformat Bug?

Hi,

When I type out code, I tend to press the autoformat button quite a bit just to make sure there are no errors with my coding while making it look good while I’m at it.

But I ran into this little problem. You see whenever you type “instanceof MovieClip” like so…

if (this.getChildAt(j)instanceof MovieClip) {
        characters.push(this.getChildAt(j));
    }

And then hit the autoformat… Flash(CS4) will tend to bunch “instanceof MovieClip” together into “instanceofMovieClip”… which throws up errors.

Quite odd. Is this a bug… Or is it suppose to be like that?