diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-08-28 13:32:48 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-06-24 11:09:10 +0200 |
commit | 7873660e1ebbb6350609f4200296fc2ac4bf3035 (patch) | |
tree | f8f2cb3ecf7e44ff0e537920606a5c516dbbb1a4 /src/nvim/screen.c | |
parent | 28a549d597a286330ba87ff4fffe1e2d09e0f611 (diff) | |
download | rneovim-7873660e1ebbb6350609f4200296fc2ac4bf3035.tar.gz rneovim-7873660e1ebbb6350609f4200296fc2ac4bf3035.tar.bz2 rneovim-7873660e1ebbb6350609f4200296fc2ac4bf3035.zip |
bufhl: some style cleanup
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 3ff2a94a20..2f7fa8724f 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2210,7 +2210,7 @@ win_line ( bool search_attr_from_match = false; // if search_attr is from :match bool has_bufhl = false; // this buffer has highlight matches int bufhl_attr = 0; // attributes desired by bufhl - bufhl_lineinfo_T bufhl_info; // bufhl data for this line + BufhlLineInfo bufhl_info; // bufhl data for this line /* draw_state: items that are drawn in sequence: */ #define WL_START 0 /* nothing done yet */ |