diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2023-12-23 08:28:17 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-23 08:28:17 +0800 |
| commit | 242261d4e77806cdb4559c2be58613113a393a4e (patch) | |
| tree | 9a6a6e1ded19514fe118833d2698532811691d0b /src/nvim/eval/vars.c | |
| parent | 0c3d2a7fd99d6171fad81cc8b010281b1cd1c3e0 (diff) | |
| download | rneovim-242261d4e77806cdb4559c2be58613113a393a4e.tar.gz rneovim-242261d4e77806cdb4559c2be58613113a393a4e.tar.bz2 rneovim-242261d4e77806cdb4559c2be58613113a393a4e.zip | |
refactor(IWYU): move evalarg_T to eval_defs.h (#26716)
Diffstat (limited to 'src/nvim/eval/vars.c')
| -rw-r--r-- | src/nvim/eval/vars.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval/vars.c b/src/nvim/eval/vars.c index 8ed76341b0..dd984e8819 100644 --- a/src/nvim/eval/vars.c +++ b/src/nvim/eval/vars.c @@ -43,6 +43,8 @@ #include "nvim/vim_defs.h" #include "nvim/window.h" +typedef int (*ex_unletlock_callback)(lval_T *, char *, exarg_T *, int); + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "eval/vars.c.generated.h" #endif |