I often accidently step into code that I\'m not interested in while debugging in Delphi.
Let\'s start by saying that I know that you can step over with F8, and that
In the project dpr file, I use
uses {$IFNDEF DEBUG} FastMM4, {$ENDIF} ... // other units
to exclude FastMM4 during debug mode. Requires no change in FastMM4 so I don't have to remember to add {$D-} in FastMM when I change to a different version.