diff options
author | ZyX <kp-pav@yandex.ru> | 2018-04-22 20:31:40 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2018-04-22 20:31:40 +0300 |
commit | 4bab9d34e6ec8801d36e2c8594d2122fc45e8db2 (patch) | |
tree | 62fea1f88e9a2dd44c39dc5f0097a50bd24f0485 /src/nvim/quickfix.c | |
parent | 4b41680828c8f629617d90e3c17ff229a44b32d4 (diff) | |
download | rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.gz rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.bz2 rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.zip |
*: Fix clint errors
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index cbab8eb05b..fb7a9ecf5f 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -4738,7 +4738,7 @@ void ex_helpgrep(exarg_T *eap) regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING); regmatch.rm_ic = FALSE; if (regmatch.regprog != NULL) { - /* create a new quickfix list */ + // Create a new quickfix list. qf_new_list(qi, *eap->cmdlinep); /* Go through all directories in 'runtimepath' */ |