diff options
author | Shougo <Shougo.Matsu@gmail.com> | 2016-12-10 21:40:29 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-12-10 13:40:29 +0100 |
commit | 2380747ff2ea7bb801b7e92cbe30832fa75cb622 (patch) | |
tree | 74fcb4051bc7d4a31d67cb9fb54f3124391546f0 /src/nvim/file_search.c | |
parent | 26f8cdedc375cbd5d42f640725cbbbc31cb4bd4f (diff) | |
download | rneovim-2380747ff2ea7bb801b7e92cbe30832fa75cb622.tar.gz rneovim-2380747ff2ea7bb801b7e92cbe30832fa75cb622.tar.bz2 rneovim-2380747ff2ea7bb801b7e92cbe30832fa75cb622.zip |
vim-patch:7.4.1909 (#5748)
Problem: Doubled semicolons.
Solution: Reduce to one. (Dominique Pelle)
https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index c6cfba8142..2ac8e27047 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -1149,7 +1149,7 @@ static ff_stack_T *ff_create_stack_element(char_u *fix_part, char_u *wc_part, in new->ffs_filearray_cur = 0; new->ffs_stage = 0; new->ffs_level = level; - new->ffs_star_star_empty = star_star_empty;; + new->ffs_star_star_empty = star_star_empty; /* the following saves NULL pointer checks in vim_findfile */ if (fix_part == NULL) |