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/dosinst.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/dosinst.c')
-rw-r--r-- | src/dosinst.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dosinst.c b/src/dosinst.c index 809789fb7..2362418a6 100644 --- a/src/dosinst.c +++ b/src/dosinst.c @@ -1313,14 +1313,14 @@ init_vimrc_choices(void) /* Whether to remap keys */ alloc_text(choice_count, remap_text , remap_choices[remap_choice]); choices[choice_count].changefunc = change_remap_choice; - choices[choice_count].installfunc = NULL;; + choices[choice_count].installfunc = NULL; choices[choice_count].active = (*oldvimrc == NUL); ++choice_count; /* default way to use the mouse */ alloc_text(choice_count, mouse_text, mouse_choices[mouse_choice]); choices[choice_count].changefunc = change_mouse_choice; - choices[choice_count].installfunc = NULL;; + choices[choice_count].installfunc = NULL; choices[choice_count].active = (*oldvimrc == NUL); ++choice_count; } |