diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-15 11:44:37 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-15 11:44:37 -0500 |
commit | bc812a82f87644e184b17517936fddf6ff1221e3 (patch) | |
tree | ca6faf2bbc85d9098b6663d2d236ca761175cb2f /src/nvim/option.c | |
parent | b299c011a04e6c14ec7dc9fd50a58f4a9e5afd40 (diff) | |
parent | 150b0d66e11dc69b1a4fc3daad3016fa74bee4d9 (diff) | |
download | rneovim-bc812a82f87644e184b17517936fddf6ff1221e3.tar.gz rneovim-bc812a82f87644e184b17517936fddf6ff1221e3.tar.bz2 rneovim-bc812a82f87644e184b17517936fddf6ff1221e3.zip |
Merge pull request #1460 from elmart/clang-analysis-fixes-3
Fix clang analysis warnings. (3)
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 14b26fbc34..31f5ab7788 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -2563,7 +2563,6 @@ do_set ( /* find end of name */ key = 0; if (*arg == '<') { - nextchar = 0; opt_idx = -1; /* look out for <t_>;> */ if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4]) |