diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-28 16:35:20 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-28 18:34:01 -0500 |
commit | 26dfeb42dd515ebd0a0f1f1da3aadc11fb993041 (patch) | |
tree | 1215cd7148db1685660ae9571b24f3e752e6f61a /src/nvim/normal.c | |
parent | 0e913a08129b3e0e4d2d81eb424c9481c7aaee1c (diff) | |
download | rneovim-26dfeb42dd515ebd0a0f1f1da3aadc11fb993041.tar.gz rneovim-26dfeb42dd515ebd0a0f1f1da3aadc11fb993041.tar.bz2 rneovim-26dfeb42dd515ebd0a0f1f1da3aadc11fb993041.zip |
vim-patch:8.1.1032: warnings from clang static analyzer
Problem: Warnings from clang static analyzer. (Yegappan Lakshmanan)
Solution: Fix relevant warnings.
https://github.com/vim/vim/commit/2c519cf3bfe76083767ac94c674d2e161ed36587
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index a2060b91f7..f93d772068 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -168,7 +168,7 @@ static const struct nv_cmd { { NL, nv_down, 0, false }, { Ctrl_K, nv_error, 0, 0 }, { Ctrl_L, nv_clear, 0, 0 }, - { Ctrl_M, nv_down, 0, true }, + { CAR, nv_down, 0, true }, { Ctrl_N, nv_down, NV_STS, false }, { Ctrl_O, nv_ctrlo, 0, 0 }, { Ctrl_P, nv_up, NV_STS, false }, |