# HG changeset patch # User Paul Beltyukov # Date 1473403620 -18000 # Node ID 642bae8e8607cc94d592497a5e4ded58e6c812d8 # Parent 0fa5de94c131a5e1948d012b45f75cff6524871f# Parent e44950d4c2182906063a265092370ffdbf7d3d03 Merged skvorl/beremiz into default diff -r 0fa5de94c131 -r 642bae8e8607 editors/TextViewer.py --- a/editors/TextViewer.py Fri Aug 26 10:20:14 2016 +0500 +++ b/editors/TextViewer.py Fri Sep 09 11:47:00 2016 +0500 @@ -629,6 +629,10 @@ self.SetStyling(current_pos - last_styled_pos + 2, STC_PLC_COMMENT) last_styled_pos = current_pos + 1 state = SPACE + if len(self.CallStack) > 0: + current_call = self.CallStack.pop() + else: + current_call = None elif state == PRAGMA: if line.endswith("}"): self.SetStyling(current_pos - last_styled_pos, STC_PLC_EMPTY)