diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-13 21:51:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-13 21:51:08 +0000 |
commit | 4b1d9639726ebe1630991488a1314db628b6b854 (patch) | |
tree | 1c917ecce981d10d7a8abcd1a92530df399d786d /src/vim9.h | |
parent | 0631bb4ed7674b88ba395daf59ed222f77bc4913 (diff) | |
download | vim-git-4b1d9639726ebe1630991488a1314db628b6b854.tar.gz |
patch 8.2.4375: ctx_imports is not usedv8.2.4375
Problem: ctx_imports is not used.
Solution: Delete ctx_imports. Add missing dependency.
Diffstat (limited to 'src/vim9.h')
-rw-r--r-- | src/vim9.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vim9.h b/src/vim9.h index 45e97a2db..87ee6b163 100644 --- a/src/vim9.h +++ b/src/vim9.h @@ -691,7 +691,7 @@ typedef struct { } lhs_T; /* - * Context for compiling lines of Vim script. + * Context for compiling lines of a :def function. * Stores info about the local variables and condition stack. */ struct cctx_S { @@ -710,8 +710,6 @@ struct cctx_S { int ctx_has_closure; // set to one if a closure was created in // the function - garray_T ctx_imports; // imported items - skip_T ctx_skip; scope_T *ctx_scope; // current scope, NULL at toplevel int ctx_had_return; // last seen statement was "return" |