Suppose I execute
and then once it pauses, I enter BREAK
Stata now puts me back into the default frame, which is empty. Nonetheless, the Variables window keeps showing all the variables in the auto frame (screenshot below), and the Properties window also shows information from that frame. This is probably a bug?

Code:
frames reset
pause on
frame create auto
frame auto {
sysuse auto
pause
}
Code:
pause:
-> . BREAK
sending Break to calling program...
--Break--
r(1);
. }

Comment