mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.1909 (#5748)
Problem: Doubled semicolons.
Solution: Reduce to one. (Dominique Pelle)
945ec093cd
This commit is contained in:
parent
26f8cdedc3
commit
2380747ff2
@ -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)
|
||||
|
@ -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);
|
||||
/*
|
||||
|
@ -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;
|
||||
|
@ -531,7 +531,7 @@ static int included_patches[] = {
|
||||
// 1912,
|
||||
// 1911,
|
||||
// 1910,
|
||||
// 1909,
|
||||
1909,
|
||||
// 1908 NA
|
||||
// 1907,
|
||||
// 1906 NA
|
||||
|
Loading…
Reference in New Issue
Block a user