commit | ccab001c3de4be1406867c9dbe8d903a39923062 | [log] [tgz] |
---|---|---|
author | Andrew M. Kuchling <amk@amk.ca> | Tue Oct 19 19:29:40 2004 +0000 |
committer | Andrew M. Kuchling <amk@amk.ca> | Tue Oct 19 19:29:40 2004 +0000 |
tree | e8d3892b7d9997c110befe316b13518db2028d2b | |
parent | a13ea5572a6827674d081df74c2a1bcc1154a2d1 [diff] [blame] |
[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann
diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py index cd4813b..e23ee02 100644 --- a/Lib/curses/textpad.py +++ b/Lib/curses/textpad.py
@@ -111,6 +111,8 @@ if x == 0 and self._end_of_line(y) == 0: self.win.deleteln() else: + # first undo the effect of self._end_of_line + self.win.move(y, x) self.win.clrtoeol() elif ch == ascii.FF: # ^l self.win.refresh()