diff src/dosinst.c @ 9252:c25898cc99c1 v7.4.1909

commit https://github.com/vim/vim/commit/945ec093cd4ddefab930239990564b12eb232153 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 8 21:17:43 2016 +0200 patch 7.4.1909 Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Wed, 08 Jun 2016 21:30:06 +0200
parents 667da8443275
children 1b8932823a02
line wrap: on
line diff
--- 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;
 }