This commit is contained in:
Kovid Goyal
2020-05-12 22:54:08 +05:30
parent cdd943ded4
commit 5e48ae8bac
6 changed files with 14 additions and 14 deletions

View File

@@ -60,8 +60,8 @@ def screen_cursor_to_column(c: int) -> None:
write(CSI + '%dG' % c)
def screen_cursor_to_line(l: int) -> None:
write(CSI + '%dd' % l)
def screen_cursor_to_line(ln: int) -> None:
write(CSI + '%dd' % ln)
def screen_set_mode(x: int, private: bool) -> None: