Commit e2c54e47 authored by Evan Simpson's avatar Evan Simpson

All position changes should now be sent to the engine.

parent 47e2e276
......@@ -429,7 +429,7 @@ class TALInterpreter:
def do_rawtextBeginScope(self, (s, col, position, closeprev, dict)):
self._stream_write(s)
self.col = col
self.position = position
self.do_setPosition(position)
if closeprev:
engine = self.engine
engine.endScope()
......@@ -441,7 +441,7 @@ class TALInterpreter:
def do_rawtextBeginScope_tal(self, (s, col, position, closeprev, dict)):
self._stream_write(s)
self.col = col
self.position = position
self.do_setPosition(position)
engine = self.engine
if closeprev:
engine.endScope()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment