diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-30 18:30:36 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-30 20:32:27 +0800 |
commit | 06cf205aced6b0d5b7ae919665f2ab3fd81ab960 (patch) | |
tree | 0a2e9229bbb54fc6b16d4a9bc1cd8f6b2a2ab982 /src/nvim/regexp_nfa.c | |
parent | 4ca14b310cc385bd7ebb6e478ee5cc249f26556e (diff) | |
download | rneovim-06cf205aced6b0d5b7ae919665f2ab3fd81ab960.tar.gz rneovim-06cf205aced6b0d5b7ae919665f2ab3fd81ab960.tar.bz2 rneovim-06cf205aced6b0d5b7ae919665f2ab3fd81ab960.zip |
vim-patch:8.2.4649: various formatting problems
Problem: Various formatting problems.
Solution: Improve the code formatting.
https://github.com/vim/vim/commit/b4ad3b0deac12674a7773311890b48fd39c6807c
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r-- | src/nvim/regexp_nfa.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 8a14a2864c..a8d6e9c40b 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -6249,8 +6249,10 @@ static int nfa_regmatch(nfa_regprog_T *prog, nfa_state_T *start, case NFA_MARK_GT: case NFA_MARK_LT: { - size_t col = rex.input - rex.line; - pos_T *pos = getmark_buf(rex.reg_buf, t->state->val, false); + pos_T *pos; + size_t col = REG_MULTI ? rex.input - rex.line : 0; + + pos = getmark_buf(rex.reg_buf, t->state->val, false); // Line may have been freed, get it again. if (REG_MULTI) { |