Fix incorrect replay of screen cursor down

This commit is contained in:
Kovid Goyal
2017-05-26 13:21:16 +05:30
parent a1d4630a25
commit e9b5963610

View File

@@ -91,7 +91,7 @@ def screen_cursor_up2(count):
def screen_cursor_down(count):
write(CSI + '%dDB' % count)
write(CSI + '%dB' % count)
def screen_carriage_return():