summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-22 15:20:32 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-22 15:20:32 +0200
commit0263146b5dbbb6c120ce2e7720256503b864425d (patch)
treeb6f18fde8fd4bbc29c322b414ac584106e512d7a
parent53f8174eaeb93b381cf74c58863f8fe82748a22a (diff)
patch 8.0.1136: W_WIDTH() is always the samev8.0.1136
Problem: W_WIDTH() is always the same. Solution: Expand the macro.
-rw-r--r--src/charset.c20
-rw-r--r--src/edit.c12
-rw-r--r--src/evalfunc.c2
-rw-r--r--src/ex_cmds.c2
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/getchar.c6
-rw-r--r--src/gui.c6
-rw-r--r--src/gui_beval.c2
-rw-r--r--src/gui_mac.c2
-rw-r--r--src/if_lua.c2
-rw-r--r--src/if_mzsch.c2
-rw-r--r--src/if_py_both.h2
-rw-r--r--src/if_ruby.c2
-rw-r--r--src/misc1.c6
-rw-r--r--src/misc2.c6
-rw-r--r--src/move.c22
-rw-r--r--src/normal.c22
-rw-r--r--src/popupmnu.c4
-rw-r--r--src/quickfix.c2
-rw-r--r--src/screen.c138
-rw-r--r--src/search.c2
-rw-r--r--src/structs.h3
-rw-r--r--src/ui.c8
-rw-r--r--src/version.c2
-rw-r--r--src/vim.h1
-rw-r--r--src/window.c6
26 files changed, 142 insertions, 142 deletions
diff --git a/src/charset.c b/src/charset.c
index 4f79c90aac..4516816fe4 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1100,7 +1100,7 @@ win_lbr_chartabsize(
*/
numberextra = win_col_off(wp);
col2 = col;
- colmax = (colnr_T)(W_WIDTH(wp) - numberextra - col_adj);
+ colmax = (colnr_T)(wp->w_width - numberextra - col_adj);
if (col >= colmax)
{
colmax += col_adj;
@@ -1151,10 +1151,10 @@ win_lbr_chartabsize(
numberextra = numberwidth;
col += numberextra + mb_added;
- if (col >= (colnr_T)W_WIDTH(wp))
+ if (col >= (colnr_T)wp->w_width)
{
- col -= W_WIDTH(wp);
- numberextra = W_WIDTH(wp) - (numberextra - win_col_off2(wp));
+ col -= wp->w_width;
+ numberextra = wp->w_width - (numberextra - win_col_off2(wp));
if (col >= numberextra && numberextra > 0)
col %= numberextra;
if (*p_sbr != NUL)
@@ -1170,18 +1170,18 @@ win_lbr_chartabsize(
numberwidth -= win_col_off2(wp);
}
- if (col == 0 || col + size + sbrlen > (colnr_T)W_WIDTH(wp))
+ if (col == 0 || col + size + sbrlen > (colnr_T)wp->w_width)
{
added = 0;
if (*p_sbr != NUL)
{
- if (size + sbrlen + numberwidth > (colnr_T)W_WIDTH(wp))
+ if (size + sbrlen + numberwidth > (colnr_T)wp->w_width)
{
/* calculate effective window width */
- int width = (colnr_T)W_WIDTH(wp) - sbrlen - numberwidth;
- int prev_width = col ? ((colnr_T)W_WIDTH(wp) - (sbrlen + col)) : 0;
+ int width = (colnr_T)wp->w_width - sbrlen - numberwidth;
+ int prev_width = col ? ((colnr_T)wp->w_width - (sbrlen + col)) : 0;
if (width == 0)
- width = (colnr_T)W_WIDTH(wp);
+ width = (colnr_T)wp->w_width;
added += ((size - prev_width) / width) * vim_strsize(p_sbr);
if ((size - prev_width) % width)
/* wrapped, add another length of 'sbr' */
@@ -1248,7 +1248,7 @@ in_win_border(win_T *wp, colnr_T vcol)
if (wp->w_width == 0) /* there is no border */
return FALSE;
- width1 = W_WIDTH(wp) - win_col_off(wp);
+ width1 = wp->w_width - win_col_off(wp);
if ((int)vcol < width1 - 1)
return FALSE;
if ((int)vcol == width1 - 1)
diff --git a/src/edit.c b/src/edit.c
index 8486e34aaf..14201a2ec3 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -1783,7 +1783,7 @@ edit_putchar(int c, int highlight)
#ifdef FEAT_RIGHTLEFT
if (curwin->w_p_rl)
{
- pc_col += W_WIDTH(curwin) - 1 - curwin->w_wcol;
+ pc_col += curwin->w_width - 1 - curwin->w_wcol;
# ifdef FEAT_MBYTE
if (has_mbyte)
{
@@ -1865,7 +1865,7 @@ display_dollar(colnr_T col)
}
#endif
curs_columns(FALSE); /* recompute w_wrow and w_wcol */
- if (curwin->w_wcol < W_WIDTH(curwin))
+ if (curwin->w_wcol < curwin->w_width)
{
edit_putchar('$', FALSE);
dollar_vcol = curwin->w_virtcol;
@@ -6820,7 +6820,7 @@ check_auto_format(
/*
* Find out textwidth to be used for formatting:
* if 'textwidth' option is set, use it
- * else if 'wrapmargin' option is set, use W_WIDTH(curwin) - 'wrapmargin'
+ * else if 'wrapmargin' option is set, use curwin->w_width - 'wrapmargin'
* if invalid value, use 0.
* Set default to window width (maximum 79) for "gq" operator.
*/
@@ -6835,7 +6835,7 @@ comp_textwidth(
{
/* The width is the window width minus 'wrapmargin' minus all the
* things that add to the margin. */
- textwidth = W_WIDTH(curwin) - curbuf->b_p_wm;
+ textwidth = curwin->w_width - curbuf->b_p_wm;
#ifdef FEAT_CMDWIN
if (cmdwin_type != 0)
textwidth -= 1;
@@ -6854,7 +6854,7 @@ comp_textwidth(
textwidth = 0;
if (ff && textwidth == 0)
{
- textwidth = W_WIDTH(curwin) - 1;
+ textwidth = curwin->w_width - 1;
if (textwidth > 79)
textwidth = 79;
}
@@ -9447,7 +9447,7 @@ ins_mousescroll(int dir)
int val, step = 6;
if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
- step = W_WIDTH(curwin);
+ step = curwin->w_width;
val = curwin->w_leftcol + (dir == MSCR_RIGHT ? -step : step);
if (val < 0)
val = 0;
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 6c2a73e800..7b019a53d7 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -13239,7 +13239,7 @@ f_winrestview(typval_T *argvars, typval_T *rettv UNUSED)
check_cursor();
win_new_height(curwin, curwin->w_height);
- win_new_width(curwin, W_WIDTH(curwin));
+ win_new_width(curwin, curwin->w_width);
changed_window_setting();
if (curwin->w_topline <= 0)
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 143ea55e42..b4351b23dc 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -177,7 +177,7 @@ ex_align(exarg_T *eap)
if (width <= 0)
width = curbuf->b_p_tw;
if (width == 0 && curbuf->b_p_wm > 0)
- width = W_WIDTH(curwin) - curbuf->b_p_wm;
+ width = curwin->w_width - curbuf->b_p_wm;
if (width <= 0)
width = 80;
}
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index adf42799e4..29435c2ea8 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8486,7 +8486,7 @@ ex_resize(exarg_T *eap)
if (cmdmod.split & WSP_VERT)
{
if (*eap->arg == '-' || *eap->arg == '+')
- n += W_WIDTH(curwin);
+ n += curwin->w_width;
else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
n = 9999;
win_setwidth_win((int)n, wp);
diff --git a/src/getchar.c b/src/getchar.c
index 179b2f3e0e..ef42d9c8cc 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -2666,8 +2666,8 @@ vgetorpeek(int advance)
++col;
}
curwin->w_wrow = curwin->w_cline_row
- + curwin->w_wcol / W_WIDTH(curwin);
- curwin->w_wcol %= W_WIDTH(curwin);
+ + curwin->w_wcol / curwin->w_width;
+ curwin->w_wcol %= curwin->w_width;
curwin->w_wcol += curwin_col_off();
#ifdef FEAT_MBYTE
col = 0; /* no correction needed */
@@ -2684,7 +2684,7 @@ vgetorpeek(int advance)
else if (curwin->w_p_wrap && curwin->w_wrow)
{
--curwin->w_wrow;
- curwin->w_wcol = W_WIDTH(curwin) - 1;
+ curwin->w_wcol = curwin->w_width - 1;
#ifdef FEAT_MBYTE
col = curwin->w_cursor.col - 1;
#endif
diff --git a/src/gui.c b/src/gui.c
index 4f9c63f669..a17c57112d 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -4564,14 +4564,14 @@ gui_update_horiz_scrollbar(int force)
return;
}
- size = W_WIDTH(curwin);
+ size = curwin->w_width;
if (curwin->w_p_wrap)
{
value = 0;
#ifdef SCROLL_PAST_END
max = 0;
#else
- max = W_WIDTH(curwin) - 1;
+ max = curwin->w_width - 1;
#endif
}
else
@@ -4591,7 +4591,7 @@ gui_update_horiz_scrollbar(int force)
#endif
#ifndef SCROLL_PAST_END
- max += W_WIDTH(curwin) - 1;
+ max += curwin->w_width - 1;
#endif
/* The line number isn't scrolled, thus there is less space when
* 'number' or 'relativenumber' is set (also for 'foldcolumn'). */
diff --git a/src/gui_beval.c b/src/gui_beval.c
index 2dbce7e595..1c01ecc84a 100644
--- a/src/gui_beval.c
+++ b/src/gui_beval.c
@@ -338,7 +338,7 @@ get_beval_info(
row = Y_2_ROW(beval->y);
col = X_2_COL(beval->x);
wp = mouse_find_win(&row, &col);
- if (wp != NULL && row < wp->w_height && col < W_WIDTH(wp))
+ if (wp != NULL && row < wp->w_height && col < wp->w_width)
{
/* Found a window and the cursor is in the text. Now find the line
* number. */
diff --git a/src/gui_mac.c b/src/gui_mac.c
index 8803487dea..bbb0857a0c 100644
--- a/src/gui_mac.c
+++ b/src/gui_mac.c
@@ -1612,7 +1612,7 @@ gui_mac_scroll_action(ControlHandle theControl, short partCode)
else /* Bottom scrollbar */
{
sb_info = sb;
- page = W_WIDTH(curwin) - 5;
+ page = curwin->w_width - 5;
}
switch (partCode)
diff --git a/src/if_lua.c b/src/if_lua.c
index ef827ca589..bc7029389e 100644
--- a/src/if_lua.c
+++ b/src/if_lua.c
@@ -1179,7 +1179,7 @@ luaV_window_index(lua_State *L)
else if (strncmp(s, "col", 3) == 0)
lua_pushinteger(L, w->w_cursor.col + 1);
else if (strncmp(s, "width", 5) == 0)
- lua_pushinteger(L, W_WIDTH(w));
+ lua_pushinteger(L, w->w_width);
else if (strncmp(s, "height", 6) == 0)
lua_pushinteger(L, w->w_height);
/* methods */
diff --git a/src/if_mzsch.c b/src/if_mzsch.c
index 6577822731..c9c5969483 100644
--- a/src/if_mzsch.c
+++ b/src/if_mzsch.c
@@ -2063,7 +2063,7 @@ get_window_width(void *data, int argc, Scheme_Object **argv)
Vim_Prim *prim = (Vim_Prim *)data;
vim_mz_window *win = get_window_arg(prim->name, 0, argc, argv);
- return scheme_make_integer(W_WIDTH(win->win));
+ return scheme_make_integer(win->win->w_width);
}
/* (set-win-width {width} [window]) */
diff --git a/src/if_py_both.h b/src/if_py_both.h
index ea8752d98a..e717646d05 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -3875,7 +3875,7 @@ WindowAttr(WindowObject *self, char *name)
else if (strcmp(name, "row") == 0)
return PyLong_FromLong((long)(self->win->w_winrow));
else if (strcmp(name, "width") == 0)
- return PyLong_FromLong((long)(W_WIDTH(self->win)));
+ return PyLong_FromLong((long)(self->win->w_width));
else if (strcmp(name, "col") == 0)
return PyLong_FromLong((long)(self->win->w_wincol));
else if (strcmp(name, "vars") == 0)
diff --git a/src/if_ruby.c b/src/if_ruby.c
index c1a6840f4d..9474e7c8a6 100644
--- a/src/if_ruby.c
+++ b/src/if_ruby.c
@@ -1470,7 +1470,7 @@ static VALUE window_set_height(VALUE self, VALUE height)
static VALUE window_width(VALUE self UNUSED)
{
- return INT2NUM(W_WIDTH(get_win(self)));
+ return INT2NUM(get_win(self->w_width));
}
static VALUE window_set_width(VALUE self UNUSED, VALUE width)
diff --git a/src/misc1.c b/src/misc1.c
index 369b716ad5..f7789ff794 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -495,7 +495,7 @@ get_breakindent_win(
static varnumber_T prev_tick = 0; /* changedtick of cached value */
int bri = 0;
/* window width minus window margin space, i.e. what rests for text */
- const int eff_wwidth = W_WIDTH(wp)
+ const int eff_wwidth = wp->w_width
- ((wp->w_p_nu || wp->w_p_rnu)
&& (vim_strchr(p_cpo, CPO_NUMCOL) == NULL)
? number_width(wp) + 1 : 0);
@@ -2026,7 +2026,7 @@ plines_win_nofold(win_T *wp, linenr_T lnum)
/*
* Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
*/
- width = W_WIDTH(wp) - win_col_off(wp);
+ width = wp->w_width - win_col_off(wp);
if (width <= 0)
return 32000;
if (col <= width)
@@ -2083,7 +2083,7 @@ plines_win_col(win_T *wp, linenr_T lnum, long column)
/*
* Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
*/
- width = W_WIDTH(wp) - win_col_off(wp);
+ width = wp->w_width - win_col_off(wp);
if (width <= 0)
return 9999;
diff --git a/src/misc2.c b/src/misc2.c
index d956e3a6b8..fac44c737a 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -165,7 +165,7 @@ coladvance2(
else
{
#ifdef FEAT_VIRTUALEDIT
- int width = W_WIDTH(curwin) - win_col_off(curwin);
+ int width = curwin->w_width - win_col_off(curwin);
if (finetune
&& curwin->w_p_wrap
@@ -310,7 +310,7 @@ coladvance2(
int b = (int)wcol - (int)col;
/* The difference between wcol and col is used to set coladd. */
- if (b > 0 && b < (MAXCOL - 2 * W_WIDTH(curwin)))
+ if (b > 0 && b < (MAXCOL - 2 * curwin->w_width))
pos->coladd = b;
col += b;
@@ -662,7 +662,7 @@ leftcol_changed(void)
int retval = FALSE;
changed_cline_bef_curs();
- lastcol = curwin->w_leftcol + W_WIDTH(curwin) - curwin_col_off() - 1;
+ lastcol = curwin->w_leftcol + curwin->w_width - curwin_col_off() - 1;
validate_virtcol();
/*
diff --git a/src/move.c b/src/move.c
index c520f5fd51..4e5618d7b7 100644
--- a/src/move.c
+++ b/src/move.c
@@ -855,14 +855,14 @@ validate_cursor_col(void)
col = curwin->w_virtcol;
off = curwin_col_off();
col += off;
- width = W_WIDTH(curwin) - off + curwin_col_off2();
+ width = curwin->w_width - off + curwin_col_off2();
/* long line wrapping, adjust curwin->w_wrow */
if (curwin->w_p_wrap
- && col >= (colnr_T)W_WIDTH(curwin)
+ && col >= (colnr_T)curwin->w_width
&& width > 0)
/* use same formula as what is used in curs_columns() */
- col -= ((col - W_WIDTH(curwin)) / width + 1) * width;
+ col -= ((col - curwin->w_width) / width + 1) * width;
if (col > (int)curwin->w_leftcol)
col -= curwin->w_leftcol;
else
@@ -975,11 +975,11 @@ curs_columns(
*/
curwin->w_wrow = curwin->w_cline_row;
- textwidth = W_WIDTH(curwin) - extra;
+ textwidth = curwin->w_width - extra;
if (textwidth <= 0)
{
/* No room for text, put cursor in last char of window. */
- curwin->w_wcol = W_WIDTH(curwin) - 1;
+ curwin->w_wcol = curwin->w_width - 1;
curwin->w_wrow = curwin->w_height - 1;
}
else if (curwin->w_p_wrap && curwin->w_width != 0)
@@ -987,10 +987,10 @@ curs_columns(
width = textwidth + curwin_col_off2();
/* long line wrapping, adjust curwin->w_wrow */
- if (curwin->w_wcol >= W_WIDTH(curwin))
+ if (curwin->w_wcol >= curwin->w_width)
{
/* this same formula is used in validate_cursor_col() */
- n = (curwin->w_wcol - W_WIDTH(curwin)) / width + 1;
+ n = (curwin->w_wcol - curwin->w_width) / width + 1;
curwin->w_wcol -= n * width;
curwin->w_wrow += n;
@@ -1021,7 +1021,7 @@ curs_columns(
* extra
*/
off_left = (int)startcol - (int)curwin->w_leftcol - p_siso;
- off_right = (int)endcol - (int)(curwin->w_leftcol + W_WIDTH(curwin)
+ off_right = (int)endcol - (int)(curwin->w_leftcol + curwin->w_width
- p_siso) + 1;
if (off_left < 0 || off_right > 0)
{
@@ -1249,7 +1249,7 @@ scrolldown(
validate_virtcol();
validate_cheight();
wrow += curwin->w_cline_height - 1 -
- curwin->w_virtcol / W_WIDTH(curwin);
+ curwin->w_virtcol / curwin->w_width;
}
while (wrow >= curwin->w_height && curwin->w_cursor.lnum > 1)
{
@@ -1454,7 +1454,7 @@ scrolldown_clamp(void)
validate_cheight();
validate_virtcol();
end_row += curwin->w_cline_height - 1 -
- curwin->w_virtcol / W_WIDTH(curwin);
+ curwin->w_virtcol / curwin->w_width;
}
if (end_row < curwin->w_height - p_so)
{
@@ -1512,7 +1512,7 @@ scrollup_clamp(void)
if (curwin->w_p_wrap && curwin->w_width != 0)
{
validate_virtcol();
- start_row -= curwin->w_virtcol / W_WIDTH(curwin);
+ start_row -= curwin->w_virtcol / curwin->w_width;
}
if (start_row >= p_so)
{
diff --git a/src/normal.c b/src/normal.c
index 6fffbcbc17..d2d1a29215 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -4448,8 +4448,8 @@ nv_screengo(oparg_T *oap, int dir, long dist)
col_off1 = curwin_col_off();
col_off2 = col_off1 - curwin_col_off2();
- width1 = W_WIDTH(curwin) - col_off1;
- width2 = W_WIDTH(curwin) - col_off2;
+ width1 = curwin->w_width - col_off1;
+ width2 = curwin->w_width - col_off2;
if (width2 == 0)
width2 = 1; /* avoid divide by zero */
@@ -4634,7 +4634,7 @@ nv_mousescroll(cmdarg_T *cap)
int val, step = 6;
if (mod_mask & (MOD_MASK_SHIFT | MOD_MASK_CTRL))
- step = W_WIDTH(curwin);
+ step = curwin->w_width;
val = curwin->w_leftcol + (cap->arg == MSCR_RIGHT ? -step : +step);
if (val < 0)
val = 0;
@@ -4886,7 +4886,7 @@ dozet:
/* "zH" - scroll screen right half-page */
case 'H':
- cap->count1 *= W_WIDTH(curwin) / 2;
+ cap->count1 *= curwin->w_width / 2;
/* FALLTHROUGH */
/* "zh" - scroll screen to the right */
@@ -4903,7 +4903,7 @@ dozet:
break;
/* "zL" - scroll screen left half-page */
- case 'L': cap->count1 *= W_WIDTH(curwin) / 2;
+ case 'L': cap->count1 *= curwin->w_width / 2;
/* FALLTHROUGH */
/* "zl" - scroll screen to the left */
@@ -4947,7 +4947,7 @@ dozet:
else
#endif
getvcol(curwin, &curwin->w_cursor, NULL, NULL, &col);
- n = W_WIDTH(curwin) - curwin_col_off();
+ n = curwin->w_width - curwin_col_off();
if ((long)col + p_siso < n)
col = 0;
else
@@ -8073,7 +8073,7 @@ nv_g_cmd(cmdarg_T *cap)
oap->inclusive = FALSE;
if (curwin->w_p_wrap && curwin->w_width != 0)
{
- int width1 = W_WIDTH(curwin) - curwin_col_off();
+ int width1 = curwin->w_width - curwin_col_off();
int width2 = width1 + curwin_col_off2();
validate_virtcol();
@@ -8087,7 +8087,7 @@ nv_g_cmd(cmdarg_T *cap)
* 'relativenumber' is on and lines are wrapping the middle can be more
* to the left. */
if (cap->nchar == 'm')
- i += (W_WIDTH(curwin) - curwin_col_off()
+ i += (curwin->w_width - curwin_col_off()
+ ((curwin->w_p_wrap && i > 0)
? curwin_col_off2() : 0)) / 2;
coladvance((colnr_T)i);
@@ -8139,7 +8139,7 @@ nv_g_cmd(cmdarg_T *cap)
curwin->w_curswant = MAXCOL; /* so we stay at the end */
if (cap->count1 == 1)
{
- int width1 = W_WIDTH(curwin) - col_off;
+ int width1 = curwin->w_width - col_off;
int width2 = width1 + curwin_col_off2();
validate_virtcol();
@@ -8171,7 +8171,7 @@ nv_g_cmd(cmdarg_T *cap)
}
else
{
- i = curwin->w_leftcol + W_WIDTH(curwin) - col_off - 1;
+ i = curwin->w_leftcol + curwin->w_width - col_off - 1;
coladvance((colnr_T)i);
/* Make sure we stick in this column. */
@@ -9565,7 +9565,7 @@ get_op_vcol(
colnr_T start, end;
if (VIsual_mode != Ctrl_V
- || (!initial && oap->end.col < W_WIDTH(curwin)))
+ || (!initial && oap->end.col < curwin->w_width))
return;
oap->block_mode = TRUE;
diff --git a/src/popupmnu.c b/src/popupmnu.c
index 0467c39845..c2b3e73619 100644
--- a/src/popupmnu.c
+++ b/src/popupmnu.c
@@ -190,7 +190,7 @@ redo:
/* Calculate column */
#ifdef FEAT_RIGHTLEFT
if (curwin->w_p_rl)
- col = curwin->w_wincol + W_WIDTH(curwin) - curwin->w_wcol - 1;
+ col = curwin->w_wincol + curwin->w_width - curwin->w_wcol - 1;
else
#endif
col = curwin->w_wincol + curwin->w_wcol;
@@ -312,7 +312,7 @@ pum_redraw(void)
#ifdef FEAT_RIGHTLEFT
if (curwin->w_p_rl)
{
- if (pum_col < curwin->w_wincol + W_WIDTH(curwin) - 1)
+ if (pum_col < curwin->w_wincol + curwin->w_width - 1)
screen_putchar(' ', row, pum_col + 1, attr);
}
else
diff --git a/src/quickfix.c b/src/quickfix.c
index 4625db9844..850fa7b6c8 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -3148,7 +3148,7 @@ ex_copen(exarg_T *eap)
{
if (cmdmod.split & WSP_VERT)
{
- if (height != W_WIDTH(win))
+ if (height != win->w_width)
win_setwidth(height);
}
else if (height != win->w_height)
diff --git a/src/screen.c b/src/screen.c
index 260471acef..13b6a06323 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -2353,8 +2353,8 @@ win_draw_end(
if (n > 0)
{
/* draw the fold column at the right */
- if (n > W_WIDTH(wp))
- n = W_WIDTH(wp);
+ if (n > wp->w_width)
+ n = wp->w_width;
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
W_ENDCOL(wp) - n, (int)W_ENDCOL(wp),
' ', ' ', HL_ATTR(HLF_FC));
@@ -2366,8 +2366,8 @@ win_draw_end(
int nn = n + 2;
/* draw the sign column left of the fold column */
- if (nn > W_WIDTH(wp))
- nn = W_WIDTH(wp);
+ if (nn > wp->w_width)
+ nn = wp->w_width;
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
W_ENDCOL(wp) - nn, (int)W_ENDCOL(wp) - n,
' ', ' ', HL_ATTR(HLF_SC));
@@ -2402,8 +2402,8 @@ win_draw_end(
int nn = n + fdc;
/* draw the fold column at the left */
- if (nn > W_WIDTH(wp))
- nn = W_WIDTH(wp);
+ if (nn > wp->w_width)
+ nn = wp->w_width;
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
wp->w_wincol + n, (int)wp->w_wincol + nn,
' ', ' ', HL_ATTR(HLF_FC));
@@ -2416,8 +2416,8 @@ win_draw_end(
int nn = n + 2;
/* draw the sign column after the fold column */
- if (nn > W_WIDTH(wp))
- nn = W_WIDTH(wp);
+ if (nn > wp->w_width)
+ nn = wp->w_width;
screen_fill(W_WINROW(wp) + row, W_WINROW(wp) + endrow,
wp->w_wincol + n, (int)wp->w_wincol + nn,
' ', ' ', HL_ATTR(HLF_SC));
@@ -2482,7 +2482,7 @@ text_to_screenline(win_T *wp, char_u *text, int col)
{
cells = (*mb_ptr2cells)(p);
c_len = (*mb_ptr2len)(p);
- if (col + cells > W_WIDTH(wp)
+ if (col + cells > wp->w_width
# ifdef FEAT_RIGHTLEFT
- (wp->w_p_rl ? col : 0)
# endif
@@ -2566,8 +2566,8 @@ text_to_screenline(win_T *wp, char_u *text, int col)
{
int len = (int)STRLEN(text);
- if (len > W_WIDTH(wp) - col)
- len = W_WIDTH(wp) - col;
+ if (len > wp->w_width - col)
+ len = wp->w_width - col;
if (len > 0)
{
#ifdef FEAT_RIGHTLEFT
@@ -2593,7 +2593,7 @@ compute_foldcolumn(win_T *wp, int col)
{
int fdc = wp->w_p_fdc;
int wmw = wp == curwin && p_wmw == 0 ? 1 : p_wmw;
- int wwidth = W_WIDTH(wp);
+ int wwidth = wp->w_width;
if (fdc > wwidth - (col + wmw))
fdc = wwidth - (col + wmw);
@@ -2662,11 +2662,11 @@ fold_line(
{
int i;
- copy_text_attr(off + W_WIDTH(wp) - fdc - col, buf, fdc,
+ copy_text_attr(off + wp->w_width - fdc - col, buf, fdc,
HL_ATTR(HLF_FC));
/* reverse the fold column */
for (i = 0; i < fdc; ++i)
- ScreenLines[off + W_WIDTH(wp) - i - 1 - col] = buf[i];
+ ScreenLines[off + wp->w_width - i - 1 - col] = buf[i];
}
else
#endif
@@ -2677,7 +2677,7 @@ fold_line(
#ifdef FEAT_RIGHTLEFT
# define RL_MEMSET(p, v, l) if (wp->w_p_rl) \
for (ri = 0; ri < l; ++ri) \
- ScreenAttrs[off + (W_WIDTH(wp) - (p) - (l)) + ri] = v; \
+ ScreenAttrs[off + (wp->w_width - (p) - (l)) + ri] = v; \
else \
for (ri = 0; ri < l; ++ri) \
ScreenAttrs[off + (p) + ri] = v
@@ -2688,13 +2688,13 @@ fold_line(
/* Set all attributes of the 'number' or 'relativenumber' column and the
* text */
- RL_MEMSET(col, HL_ATTR(HLF_FL), W_WIDTH(wp) - col);
+ RL_MEMSET(col, HL_ATTR(HLF_FL), wp->w_width - col);
#ifdef FEAT_SIGNS
/* If signs are being displayed, add two spaces. */
if (signcolumn_on(wp))
{
- len = W_WIDTH(wp) - col;
+ len = wp->w_width - col;
if (len > 0)
{
if (len > 2)
@@ -2702,7 +2702,7 @@ fold_line(
# ifdef FEAT_RIGHTLEFT
if (wp->w_p_rl)
/* the line number isn't reversed */
- copy_text_attr(off + W_WIDTH(wp) - len - col,
+ copy_text_attr(off + wp->w_width - len - col,
(char_u *)" ", len, HL_ATTR(HLF_FL));
else
# endif
@@ -2717,7 +2717,7 @@ fold_line(
*/
if (wp->w_p_nu || wp->w_p_rnu)
{
- len = W_WIDTH(wp) - col;
+ len = wp->w_width - col;
if (len > 0)
{
int w = number_width(wp);
@@ -2747,7 +2747,7 @@ fold_line(
#ifdef FEAT_RIGHTLEFT
if (wp->w_p_rl)
/* the line number isn't reversed */
- copy_text_attr(off + W_WIDTH(wp) - len - col, buf, len,
+ copy_text_attr(off + wp->w_width - len - col, buf, len,
HL_ATTR(HLF_FL));
else
#endif
@@ -2775,7 +2775,7 @@ fold_line(
if (wp->w_p_rl)
col -= txtcol;
#endif
- while (col < W_WIDTH(wp)
+ while (col < wp->w_width
#ifdef FEAT_RIGHTLEFT
- (wp->w_p_rl ? txtcol : 0)
#endif
@@ -2837,14 +2837,14 @@ fold_line(
if (VIsual_mode == Ctrl_V)
{
/* Visual block mode: highlight the chars part of the block */
- if (wp->w_old_cursor_fcol + txtcol < (colnr_T)W_WIDTH(wp))
+ if (wp->w_old_cursor_fcol + txtcol < (colnr_T)wp->w_width)
{
if (wp->w_old_cursor_lcol != MAXCOL
&& wp->w_old_cursor_lcol + txtcol
- < (colnr_T)W_WIDTH(wp))
+ < (colnr_T)wp->w_width)
len = wp->w_old_cursor_lcol;
else
- len = W_WIDTH(wp) - txtcol;
+ len = wp->w_width - txtcol;
RL_MEMSET(wp->w_old_cursor_fcol + txtcol, HL_ATTR(HLF_V),
len - (int)wp->w_old_cursor_fcol);
}
@@ -2852,7 +2852,7 @@ fold_line(
else
{
/* Set all attributes of the text */
- RL_MEMSET(txtcol, HL_ATTR(HLF_V), W_WIDTH(wp) - txtcol);
+ RL_MEMSET(txtcol, HL_ATTR(HLF_V), wp->w_width - txtcol);
}
}
}
@@ -2872,7 +2872,7 @@ fold_line(
txtcol -= wp->w_skipcol;
else
txtcol -= wp->w_leftcol;
- if (txtcol >= 0 && txtcol < W_WIDTH(wp))
+ if (txtcol >= 0 && txtcol < wp->w_width)
ScreenAttrs[off + txtcol] = hl_combine_attr(
ScreenAttrs[off + txtcol], HL_ATTR(HLF_MC));
txtcol = old_txtcol;
@@ -2888,14 +2888,14 @@ fold_line(
txtcol -= wp->w_skipcol;
else
txtcol -= wp->w_leftcol;
- if (txtcol >= 0 && txtcol < W_WIDTH(wp))
+ if (txtcol >= 0 && txtcol < wp->w_width)
ScreenAttrs[off + txtcol] = hl_combine_attr(
ScreenAttrs[off + txtcol], HL_ATTR(HLF_CUC));
}
#endif
- screen_line(row + W_WINROW(wp), wp->w_wincol, (int)W_WIDTH(wp),
- (int)W_WIDTH(wp), FALSE);
+ screen_line(row + W_WINROW(wp), wp->w_wincol, (int)wp->w_width,
+ (int)wp->w_width, FALSE);
/*
* Update w_cline_height and w_cline_folded if the cursor line was
@@ -3724,7 +3724,7 @@ win_line(
/* Rightleft window: process the text in the normal direction, but put
* it in current_ScreenLine[] from right to left. Start at the
* rightmost column of the window. */
- col = W_WIDTH(wp) - 1;
+ col = wp->w_width - 1;
off += col;
}
#endif
@@ -3963,7 +3963,7 @@ win_line(
n_extra = col + 1;
else
# endif
- n_extra = W_WIDTH(wp) - col;
+ n_extra = wp->w_width - col;
char_attr = HL_ATTR(HLF_DED);
}
# endif
@@ -4016,7 +4016,7 @@ win_line(
#endif
)
{
- screen_line(screen_row, wp->w_wincol, col, -(int)W_WIDTH(wp),
+ screen_line(screen_row, wp->w_wincol, col, -(int)wp->w_width,
HAS_RIGHTLEFT(wp->w_p_rl));
/* Pretend we have finished updating the window. Except when
* 'cursorcolumn' is set. */
@@ -4285,7 +4285,7 @@ win_line(
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col <= 0) :
# endif
- (col >= W_WIDTH(wp) - 1))
+ (col >= wp->w_width - 1))
&& (*mb_char2cells)(mb_c) == 2)
{
c = '>';
@@ -4486,7 +4486,7 @@ win_line(
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col <= 0) :
# endif
- (col >= W_WIDTH(wp) - 1))
+ (col >= wp->w_width - 1))
&& (*mb_char2cells)(mb_c) == 2)
{
c = '>';
@@ -4703,7 +4703,7 @@ win_line(
/* TODO: is passing p for start of the line OK? */
n_extra = win_lbr_chartabsize(wp, line, p, (colnr_T)vcol,
NULL) - 1;
- if (c == TAB && n_extra + col > W_WIDTH(wp))
+ if (c == TAB && n_extra + col > wp->w_width)
n_extra = (int)wp->w_buffer->b_p_ts
- vcol % (int)wp->w_buffer->b_p_ts - 1;
@@ -4920,7 +4920,7 @@ win_line(
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col >= 0) :
# endif
- (col < W_WIDTH(wp)))
+ (col < wp->w_width))
&& !(noinvcur
&& lnum == wp->w_cursor.lnum
&& (colnr_T)vcol == wp->w_virtcol)))
@@ -5031,7 +5031,7 @@ win_line(
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col >= 0) :
# endif