Issue #14962: merge

This commit is contained in:
Ned Deily 2012-05-31 09:58:08 -07:00
commit d3487be876
2 changed files with 8 additions and 0 deletions

View file

@ -309,6 +309,11 @@ class ModifiedColorDelegator(ColorDelegator):
"console": idleConf.GetHighlight(theme, "console"),
})
def removecolors(self):
# Don't remove shell color tags before "iomark"
for tag in self.tagdefs:
self.tag_remove(tag, "iomark", "end")
class ModifiedUndoDelegator(UndoDelegator):
"Extend base class: forbid insert/delete before the I/O mark"