patch 7.4.1909

Problem:    Doubled semicolons.
Solution:   Reduce to one. (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2016-06-08 21:17:43 +02:00
parent 5ce4a0b96a
commit 945ec093cd
7 changed files with 10 additions and 8 deletions

View File

@ -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;
}