We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling return outside loop, dotimes, or dolist causes subsequent loops to fail. For example:
(defun test () (dotimes (x 6) (princ x)) (return 67))
It works the first time but fails the second:
> (test) 012345 67 > (test) 0 67
Will be fixed next release. Thanks to Brian O'Dell for reporting this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Calling return outside loop, dotimes, or dolist causes subsequent loops to fail. For example:
It works the first time but fails the second:
Will be fixed next release. Thanks to Brian O'Dell for reporting this.
The text was updated successfully, but these errors were encountered: