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
|
@classmethod
|
||||||
def ispunct(cls, ch: str):
|
def ispunct(cls, ch: str):
|
||||||
return ch in (
|
return ch in (
|
||||||
|
'""'
|
||||||
';' # Semicolon
|
';' # Semicolon
|
||||||
'()' # Parens
|
'()' # Parens
|
||||||
'⟮⟯' # 'flat' parens
|
'⟮⟯' # 'flat' parens
|
||||||
|
|
Loading…
Reference in a new issue