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
**
:name
Describe the bug
Paths like #p"/foo/bar/**.json" bring up the debugger, citing:
#p"/foo/bar/**.json"
:WILD-INFERIORS is not a valid pathname-:NAME component
which is technically spec conformant according to: https://cl-community-spec.github.io/pages/Restrictions-on-Examining-a-Pathname-Name-Component.html
However, as a matter of interacting with modern OSs:
sb-impl::pattern<...>
Could Clasp be extended to support ** in :name position?
Expected behavior ** is handled in a way that doesn't throw a condition.
Actual behavior (as shown above)
Note also that this means #p"**", semantically "all files", cannot currently be constructed.
#p"**"
Code at issue Is this function perhaps relevant?
Context
2.6.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Paths like
#p"/foo/bar/**.json"
bring up the debugger, citing:which is technically spec conformant according to: https://cl-community-spec.github.io/pages/Restrictions-on-Examining-a-Pathname-Name-Component.html
However, as a matter of interacting with modern OSs:
**
assb-impl::pattern<...>
.**
as a string, as-is.Could Clasp be extended to support
**
in:name
position?Expected behavior
**
is handled in a way that doesn't throw a condition.Actual behavior
(as shown above)
Note also that this means
#p"**"
, semantically "all files", cannot currently be constructed.Code at issue
Is this function perhaps relevant?
Context
2.6.0
The text was updated successfully, but these errors were encountered: