diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-04-18 21:56:40 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-25 06:34:28 -0400 |
commit | cf434d2ae4834e0e7149e8c0e3c3739cbdf2fe1f (patch) | |
tree | 8de8cc0acd9cee95e866931712bbe53bb8b1b18b /src/nvim/eval.c | |
parent | 3d73956b9662ef0910e679f9270df5900db8047c (diff) | |
download | rneovim-cf434d2ae4834e0e7149e8c0e3c3739cbdf2fe1f.tar.gz rneovim-cf434d2ae4834e0e7149e8c0e3c3739cbdf2fe1f.tar.bz2 rneovim-cf434d2ae4834e0e7149e8c0e3c3739cbdf2fe1f.zip |
Satisfy the linter.
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 60ebc34ea9..7849a340ab 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -6707,7 +6707,7 @@ static struct fst { { "did_filetype", 0, 0, f_did_filetype }, { "diff_filler", 1, 1, f_diff_filler }, { "diff_hlID", 2, 2, f_diff_hlID }, - {"disable_char_avail_for_testing", 1, 1, f_disable_char_avail_for_testing}, + { "disable_char_avail_for_testing", 1, 1, f_disable_char_avail_for_testing }, { "empty", 1, 1, f_empty }, { "escape", 2, 2, f_escape }, { "eval", 1, 1, f_eval }, @@ -8585,7 +8585,7 @@ static void f_diff_hlID(typval_T *argvars, typval_T *rettv) // // "disable_char_avail_for_testing({expr})" function -// +// static void f_disable_char_avail_for_testing(typval_T *argvars, typval_T *rettv) FUNC_ATTR_NONNULL_ARG(1) { |