diff --git a/bu4/parsing/toolchain/transply.py b/bu4/parsing/toolchain/transply.py index 015ca61..42faac3 100644 --- a/bu4/parsing/toolchain/transply.py +++ b/bu4/parsing/toolchain/transply.py @@ -14,7 +14,7 @@ def transply(source: str) -> bytes: pass elif c in '/': b.write(bytes([CODE_CALL])) - elif c in '{': + elif c in '{‹': b.write(bytes([CODE_CALL, CODE_QOPN])) elif c in '(': b.write(bytes([CODE_MAKE])) @@ -34,7 +34,7 @@ def transply(source: str) -> bytes: b.write(bytes([CODE_QUOT])) elif c in '<': b.write(bytes([CODE_QOPN])) - elif c in '>': + elif c in '>›': b.write(bytes([CODE_QCLS])) else: value = c.encode()