diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-08 11:31:55 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-08 11:31:55 -0400 |
commit | a8b996160d2749e4f4592ece92a1107521b1beb4 (patch) | |
tree | 73eab785919b695f0e09641cb62743b40c5ccaae | |
parent | 213a66441fb1b01ed30ed1beef4d1aa540549171 (diff) | |
download | rneovim-a8b996160d2749e4f4592ece92a1107521b1beb4.tar.gz rneovim-a8b996160d2749e4f4592ece92a1107521b1beb4.tar.bz2 rneovim-a8b996160d2749e4f4592ece92a1107521b1beb4.zip |
lint
-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 5b701695fd..9e415b31a1 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -117,7 +117,7 @@ struct qf_info_S { qf_list_T qf_lists[LISTCOUNT]; }; -static qf_info_T ql_info; /* global quickfix list */ +static qf_info_T ql_info; // global quickfix list static unsigned last_qf_id = 0; // Last Used quickfix list id #define FMT_PATTERNS 10 /* maximum number of % recognized */ |