mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.1.0376: compiler warning for uninitialized variable
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution: Initialize the variable.
c787539747
This commit is contained in:
parent
eab181a74e
commit
65a3d53cb9
@ -2172,7 +2172,7 @@ win_line (
|
||||
static int cap_col = -1; /* column to check for Cap word */
|
||||
static linenr_T capcol_lnum = 0; /* line number where "cap_col" used */
|
||||
int cur_checked_col = 0; /* checked column for current line */
|
||||
int extra_check; /* has syntax or linebreak */
|
||||
int extra_check = 0; // has syntax or linebreak
|
||||
int multi_attr = 0; /* attributes desired by multibyte */
|
||||
int mb_l = 1; /* multi-byte byte length */
|
||||
int mb_c = 0; /* decoded multi-byte character */
|
||||
|
Loading…
Reference in New Issue
Block a user