From 2122a157597c42155f240a93ebe18983cfc93e9c Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Sat, 18 Jul 2020 21:01:17 -0600 Subject: [PATCH] Bugfix: " is punctuation --- src/python/flowmetal/parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python/flowmetal/parser.py b/src/python/flowmetal/parser.py index fcd27a3..daf2e34 100644 --- a/src/python/flowmetal/parser.py +++ b/src/python/flowmetal/parser.py @@ -242,6 +242,7 @@ class Parser(SexpParser): @classmethod def ispunct(cls, ch: str): return ch in ( + '""' ';' # Semicolon '()' # Parens '⟮⟯' # 'flat' parens