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
As you can see here: https://common-lisp.net/project/cl-test-grid/library/data-table.html , you recent change from #\no-break_space to #\u00a0 fixes ABCL but breaks CMUCL.
#\no-break_space
#\u00a0
I would suggest to use (code-char #xa0)
(code-char #xa0)
The text was updated successfully, but these errors were encountered:
Done, thanks, hope this fixes it
Sorry, something went wrong.
(As you probably know) you can adopt cl-travis to verify every your commit on various lisp implementations
No branches or pull requests
As you can see here: https://common-lisp.net/project/cl-test-grid/library/data-table.html , you recent change from
#\no-break_space
to#\u00a0
fixes ABCL but breaks CMUCL.I would suggest to use
(code-char #xa0)
The text was updated successfully, but these errors were encountered: