summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-22 14:35:51 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-22 14:35:51 +0200
commit53f8174eaeb93b381cf74c58863f8fe82748a22a (patch)
tree8f60614e9840f38bd2a05a48809bb7b29adc26b1 /src/structs.h
parent76301956f0c079d893cfd927b11456328bed4f9b (diff)
downloadvim-git-53f8174eaeb93b381cf74c58863f8fe82748a22a.tar.gz
patch 8.0.1135: W_WINCOL() is always the samev8.0.1135
Problem: W_WINCOL() is always the same. Solution: Expand the macro.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index 94d739191..768ff586b 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -2700,8 +2700,7 @@ struct window_S
int w_height; /* number of rows in window, excluding
status/command/winbar line(s) */
int w_status_height; /* number of status lines (0 or 1) */
- int w_wincol; /* Leftmost column of window in screen.
- use W_WINCOL() */
+ int w_wincol; /* Leftmost column of window in screen. */
int w_width; /* Width of window, excluding separation.
use W_WIDTH() */
int w_vsep_width; /* Number of separator columns (0 or 1).