diff options
author | ZyX <kp-pav@yandex.ru> | 2017-12-16 14:21:56 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-12-16 14:21:56 +0300 |
commit | 76ffe0c5aa51fe4fe14811e86867af2c711190a1 (patch) | |
tree | db4ff6f65c1f1655981fa0a2acf6fb565e130256 | |
parent | 91d3efa35a26f6c5e58850413ccbb350cb8e7b37 (diff) | |
download | rneovim-76ffe0c5aa51fe4fe14811e86867af2c711190a1.tar.gz rneovim-76ffe0c5aa51fe4fe14811e86867af2c711190a1.tar.bz2 rneovim-76ffe0c5aa51fe4fe14811e86867af2c711190a1.zip |
eval: Fix linter error
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 640967b91c..3aaa5f349d 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -12485,7 +12485,7 @@ static void f_matchaddpos(typval_T *argvars, typval_T *rettv, FunPtr fptr) return; } - // id == 3 is ok because matchaddpos() is supposed to substitute :3match + // id == 3 is ok because matchaddpos() is supposed to substitute :3match if (id == 1 || id == 2) { EMSGN(_("E798: ID is reserved for \"match\": %" PRId64), id); return; |