-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
String parsing incorrect #1969
Comments
Also: ?- "\x0\\x0\" = [_,_]. false, unexpected. true. % expected |
|
This issue may be confined to parsing strings, at least the following works exactly as expected: ?- A = '\x0\\x0\', atom_chars(A, Cs), Cs = [_,_]. A = '\x0\\x0\', Cs = "\x0\\x0\". So, |
So in a (single)
|
Nah, I've dealt with the parser before (#2254) and I'm pretty sure this is just a parsing problem. The parser deals with the |
Yeah, I solved it. Sending a PR in a moment. |
Thank you a lot, this is solved in |
Currently, I get:
The text was updated successfully, but these errors were encountered: