You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, nice project. Reminds me somewhat of the Jones Forth but for Lisp. :)
Looking through the source, on line 1015 your calling mark which ends up marking the object in r2. That object has been placed on the stack, so on calling collect garbage it will be marked anyways.
So I think you can remove that call. Very minor issue I know, but proves I'm paying attention. :) or missing something subtle...
Best regards
Chris
The text was updated successfully, but these errors were encountered:
Hi, nice project. Reminds me somewhat of the Jones Forth but for Lisp. :)
Looking through the source, on line 1015 your calling mark which ends up marking the object in r2. That object has been placed on the stack, so on calling collect garbage it will be marked anyways.
So I think you can remove that call. Very minor issue I know, but proves I'm paying attention. :) or missing something subtle...
Best regards
Chris
The text was updated successfully, but these errors were encountered: