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
This is an issue on ECL which makes strings base-string unless they contain non base-chars; for example (type-of "") => (SIMPLE-ARRAY BASE-CHAR (0))
(type-of "") => (SIMPLE-ARRAY BASE-CHAR (0))
The fix is fairly easy; you can either specialize input-rest for base-string, or add this to the beginning of input-rest for cl:string:
(when (not (equal (array-element-type input) (upgraded-array-element-type 'character))) (setf input (make-array (length input) :element-type 'character :initial-contents input)))
The text was updated successfully, but these errors were encountered:
Created a pull request for this one, so closing
Sorry, something went wrong.
No branches or pull requests
This is an issue on ECL which makes strings base-string unless they contain non base-chars; for example
(type-of "") => (SIMPLE-ARRAY BASE-CHAR (0))
The fix is fairly easy; you can either specialize input-rest for base-string, or add this to the beginning of input-rest for cl:string:
The text was updated successfully, but these errors were encountered: