Bugfix: " is punctuation
This commit is contained in:
parent
f79ff28b9a
commit
2122a15759
1 changed files with 1 additions and 0 deletions
|
@ -242,6 +242,7 @@ class Parser(SexpParser):
|
|||
@classmethod
|
||||
def ispunct(cls, ch: str):
|
||||
return ch in (
|
||||
'""'
|
||||
';' # Semicolon
|
||||
'()' # Parens
|
||||
'⟮⟯' # 'flat' parens
|
||||
|
|
Loading…
Reference in a new issue