commonlisp: stop recognizing ] as closing bracket #17
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "patch-1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
when ] appears in atoms, it's wrongly matched with (
in this sample
the ( is matched with ] because [ is disregarded
It looks like you want these to be part of a symbol, in your example. Wouldn't removing the tokenization of
]and including these in symbol characters be more appropriate then?seems like they are already included in the symbol regex, so I just removed the
]clauseThanks, that looks reasonable.