From 621204bbf6750f1ba3977b43bb35375ddda6b5ae Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 27 Oct 2006 09:03:24 +0000 Subject: get_terminal_width_height: do not pass insanely large values --- editors/vi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/vi.c b/editors/vi.c index 82985ced0..f1c79895e 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 } -- cgit v1.2.3