(self, text)
| 290 | ##sys.__stderr__.write("redo: %s\n" % self) |
| 291 | |
| 292 | def undo(self, text): |
| 293 | text.mark_set('insert', self.index1) |
| 294 | text.insert(self.index1, self.chars) |
| 295 | self.set_marks(text, self.marks_before) |
| 296 | text.see('insert') |
| 297 | ##sys.__stderr__.write("undo: %s\n" % self) |
| 298 | |
| 299 | |
| 300 | class CommandSequence(Command): |