aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-05-12 01:08:01 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-05-12 01:08:01 -0400
commitaa8ccef719cc84469aeb50ce04685163b8e715c1 (patch)
treee3989f9741b34b2c5ed0a1f91ca62a8aef6e0c6d /src/nvim/syntax.c
parent47fefba529be9b64db4339f5a365686842cab8d2 (diff)
parent6bdf82bf6f9125d88a2135b442e1857704485500 (diff)
downloadrneovim-aa8ccef719cc84469aeb50ce04685163b8e715c1.tar.gz
rneovim-aa8ccef719cc84469aeb50ce04685163b8e715c1.tar.bz2
rneovim-aa8ccef719cc84469aeb50ce04685163b8e715c1.zip
Merge pull request #4730 from jbradaric/vim-7.4.1052
vim-patch:7.4.1052
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c38
1 files changed, 21 insertions, 17 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index c3742786c9..b2ab1f8a3a 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -2615,33 +2615,37 @@ find_endpos (
IF_SYN_TIME(&spp_skip->sp_time));
spp_skip->sp_prog = regmatch.regprog;
if (r && regmatch.startpos[0].col <= best_regmatch.startpos[0].col) {
- /* Add offset to skip pattern match */
+ // Add offset to skip pattern match
syn_add_end_off(&pos, &regmatch, spp_skip, SPO_ME_OFF, 1);
- /* If the skip pattern goes on to the next line, there is no
- * match with an end pattern in this line. */
- if (pos.lnum > startpos->lnum)
+ // If the skip pattern goes on to the next line, there is no
+ // match with an end pattern in this line.
+ if (pos.lnum > startpos->lnum) {
break;
+ }
- line = ml_get_buf(syn_buf, startpos->lnum, FALSE);
+ line = ml_get_buf(syn_buf, startpos->lnum, false);
+ int line_len = (int)STRLEN(line);
- /* take care of an empty match or negative offset */
- if (pos.col <= matchcol)
- ++matchcol;
- else if (pos.col <= regmatch.endpos[0].col)
+ // take care of an empty match or negative offset
+ if (pos.col <= matchcol) {
+ matchcol++;
+ } else if (pos.col <= regmatch.endpos[0].col) {
matchcol = pos.col;
- else
- /* Be careful not to jump over the NUL at the end-of-line */
+ } else {
+ // Be careful not to jump over the NUL at the end-of-line
for (matchcol = regmatch.endpos[0].col;
- line[matchcol] != NUL && matchcol < pos.col;
- ++matchcol)
- ;
+ matchcol < line_len && matchcol < pos.col;
+ matchcol++) {
+ }
+ }
- /* if the skip pattern includes end-of-line, break here */
- if (line[matchcol] == NUL)
+ // if the skip pattern includes end-of-line, break here
+ if (matchcol >= line_len) {
break;
+ }
- continue; /* start with first end pattern again */
+ continue; // start with first end pattern again
}
}