diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-06-25 18:15:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-06-25 18:15:22 +0200 |
commit | b6da44ae82f93d036ffb2ba37a009119688d9971 (patch) | |
tree | dea583963d0aebcd8cc84075f08787dab3cb22a9 /src/screen.c | |
parent | 41d75239863d4b7a4142fc68cfa5d3a74a18d935 (diff) | |
download | vim-git-b6da44ae82f93d036ffb2ba37a009119688d9971.tar.gz |
updated for version 7.4.344v7.4.344
Problem: Unessecary initializations and other things related to
matchaddpos().
Solution: Code cleanup. (Alexey Radkov)
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index 388a29832..8e616915b 100644 --- a/src/screen.c +++ b/src/screen.c @@ -7531,7 +7531,7 @@ next_search_hl_pos(shl, lnum, posmatch, mincol) colnr_T mincol; /* minimal column for a match */ { int i; - int bot = -1; + int bot = -1; shl->lnum = 0; for (i = posmatch->cur; i < MAXPOSMATCH; i++) |