diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index 82985ce..f1c7989 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -2039,7 +2039,7 @@ static void winch_sig(int sig ATTRIBUTE_UNUSED) { signal(SIGWINCH, winch_sig); if (ENABLE_FEATURE_VI_WIN_RESIZE) - get_terminal_width_height(0, &columns, &rows); + get_terminal_width_height(0, &columns, &rows); new_screen(rows, columns); // get memory for virtual screen redraw(TRUE); // re-draw the screen } |