diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-08 21:17:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-08 21:17:43 +0200 |
commit | 945ec093cd4ddefab930239990564b12eb232153 (patch) | |
tree | f0bbaf6b699d1d3e758e6b3a395413ef64d00742 /src/misc2.c | |
parent | 5ce4a0b96ab688b1ea2481c2516e2889ff6713bf (diff) | |
download | vim-git-945ec093cd4ddefab930239990564b12eb232153.tar.gz |
patch 7.4.1909v7.4.1909
Problem: Doubled semicolons.
Solution: Reduce to one. (Dominique Pelle)
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc2.c b/src/misc2.c index ae6ca048d..67486aae3 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -5152,7 +5152,7 @@ ff_create_stack_element( 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) |