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 | |
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
-rw-r--r-- | src/nvim/file_search.c | 2 | ||||
-rw-r--r-- | src/nvim/fold.c | 2 | ||||
-rw-r--r-- | src/nvim/main.c | 2 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
4 files changed, 4 insertions, 4 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) diff --git a/src/nvim/fold.c b/src/nvim/fold.c index c84d738cb4..dcd32acfb7 100644 --- a/src/nvim/fold.c +++ b/src/nvim/fold.c @@ -165,7 +165,7 @@ bool hasFoldingWin( int use_level = FALSE; int maybe_small = FALSE; garray_T *gap; - int low_level = 0;; + int low_level = 0; checkupdate(win); /* diff --git a/src/nvim/main.c b/src/nvim/main.c index 12227565f3..c7a60d07c1 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1763,7 +1763,7 @@ static int process_env(char *env, bool is_viminit) do_cmdline_cmd((char *)initstr); sourcing_name = save_sourcing_name; sourcing_lnum = save_sourcing_lnum; - current_SID = save_sid;; + current_SID = save_sid; return OK; } return FAIL; diff --git a/src/nvim/version.c b/src/nvim/version.c index cbb0ae5112..7e7080fd61 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -531,7 +531,7 @@ static int included_patches[] = { // 1912, // 1911, // 1910, - // 1909, + 1909, // 1908 NA // 1907, // 1906 NA |