diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/search.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index b105d99d7c..fc82e81472 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -1612,8 +1612,9 @@ static bool find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos)        if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col) {          break;        } -      if (*p == ')' && p[delim_len + 1] == '"' -          && STRNCMP(delim_copy, p + 1, delim_len) == 0) { +      if (*p == ')' +          && STRNCMP(delim_copy, p + 1, delim_len) == 0 +          && p[delim_len + 1] == '"') {          found = true;          break;        }  | 
