summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-08 21:17:43 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-08 21:17:43 +0200
commit945ec093cd4ddefab930239990564b12eb232153 (patch)
treef0bbaf6b699d1d3e758e6b3a395413ef64d00742 /src/main.c
parent5ce4a0b96ab688b1ea2481c2516e2889ff6713bf (diff)
patch 7.4.1909v7.4.1909
Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index ee37500032..c877800545 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3159,7 +3159,7 @@ process_env(
sourcing_name = save_sourcing_name;
sourcing_lnum = save_sourcing_lnum;
#ifdef FEAT_EVAL
- current_SID = save_sid;;
+ current_SID = save_sid;
#endif
return OK;
}