diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-13 14:26:44 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-13 14:26:44 +0000 |
commit | 851f86b951cdd67ad9cf3149e46169d1375c8d82 (patch) | |
tree | 345b918abbe1034654b12502e877bebad593c1e5 /src/terminal.c | |
parent | 739f13a55b4982efb37ebc9282e7f79975fff982 (diff) | |
download | vim-git-851f86b951cdd67ad9cf3149e46169d1375c8d82.tar.gz |
patch 8.2.3796: the funcexe_T struct members are not named consistentlyv8.2.3796
Problem: The funcexe_T struct members are not named consistently.
Solution: Prefix "fe_" to all the members.
Diffstat (limited to 'src/terminal.c')
-rw-r--r-- | src/terminal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/terminal.c b/src/terminal.c index 7e2f45b4a..f58420084 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -4334,9 +4334,9 @@ handle_call_command(term_T *term, channel_T *channel, listitem_T *item) argvars[0].vval.v_number = term->tl_buffer->b_fnum; argvars[1] = item->li_next->li_tv; CLEAR_FIELD(funcexe); - funcexe.firstline = 1L; - funcexe.lastline = 1L; - funcexe.evaluate = TRUE; + funcexe.fe_firstline = 1L; + funcexe.fe_lastline = 1L; + funcexe.fe_evaluate = TRUE; if (call_func(func, -1, &rettv, 2, argvars, &funcexe) == OK) { clear_tv(&rettv); |