From 7f21665673686c653389ff4e86a2ce8e17804178 Mon Sep 17 00:00:00 2001 From: Brandon Coleman Date: Wed, 28 May 2014 16:35:14 -0500 Subject: move/remove W_* macros move W_ENDCOL to screen.c remove the rest of the W_* macros --- src/nvim/quickfix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/quickfix.c') diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 775b6e717e..bfac62de3d 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2045,7 +2045,7 @@ void ex_copen(exarg_T *eap) win_goto(win); if (eap->addr_count != 0) { if (cmdmod.split & WSP_VERT) { - if (height != W_WIDTH(win)) { + if (height != win->w_width) { win_setwidth(height); } } else { -- cgit