diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-03 21:29:55 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-03 21:29:55 +0100 |
commit | 3f54fd319f6641b4bed478bcc90cdb39ede68e31 (patch) | |
tree | 23a4889166bde810bfea2c22c5759e4099cd31ca /src/proto/term.pro | |
parent | 71137fed4d77e985d49ca32c79f030512767b8ce (diff) | |
download | vim-git-3f54fd319f6641b4bed478bcc90cdb39ede68e31.tar.gz |
patch 8.0.1563: timeout of getwinposx() can be too shortv8.0.1563
Problem: Timeout of getwinposx() can be too short. (lilydjwg)
Solution: Add getwinpos(). (closes #2689)
Diffstat (limited to 'src/proto/term.pro')
-rw-r--r-- | src/proto/term.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/term.pro b/src/proto/term.pro index 92cb26d58..42405dda5 100644 --- a/src/proto/term.pro +++ b/src/proto/term.pro @@ -24,7 +24,7 @@ void term_cursor_right(int i); void term_append_lines(int line_count); void term_delete_lines(int line_count); void term_set_winpos(int x, int y); -int term_get_winpos(int *x, int *y); +int term_get_winpos(int *x, int *y, varnumber_T timeout); void term_set_winsize(int height, int width); void term_fg_color(int n); void term_bg_color(int n); |