diff options
-rw-r--r-- | auto-auto-complete.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto-auto-complete.py b/auto-auto-complete.py index bd10b97..3fde092 100644 --- a/auto-auto-complete.py +++ b/auto-auto-complete.py @@ -84,7 +84,7 @@ class Parser: buf += c elif c == quote: quote = None - elif (c == ';') and (quote is None): + elif (c in ';#') and (quote is None): if buf is not None: stack[stackptr].append(buf) buf = None |