diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-13 08:59:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 08:59:11 +0800 |
commit | 6f14c5d2ddbefea51920762769eec217d19a9ed9 (patch) | |
tree | a599db91592f2118dff8db9d15908ccff36003d8 /src/nvim/undo_defs.h | |
parent | e23c5fda0a3fe385af615372c474d4dad3b74464 (diff) | |
download | rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.tar.gz rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.tar.bz2 rneovim-6f14c5d2ddbefea51920762769eec217d19a9ed9.zip |
refactor: remove some unused includes (#19747)
- Remove autocmd.h from fileio.h
- Remove normal.h from main.h
- Move bufinfo_T from undo_defs.h to undo.c
Diffstat (limited to 'src/nvim/undo_defs.h')
-rw-r--r-- | src/nvim/undo_defs.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/undo_defs.h b/src/nvim/undo_defs.h index d8470b07b1..4b64f97919 100644 --- a/src/nvim/undo_defs.h +++ b/src/nvim/undo_defs.h @@ -74,10 +74,4 @@ struct u_header { #define UH_EMPTYBUF 0x02 // buffer was empty #define UH_RELOAD 0x04 // buffer was reloaded -/// Structure passed around between undofile functions. -typedef struct { - buf_T *bi_buf; - FILE *bi_fp; -} bufinfo_T; - #endif // NVIM_UNDO_DEFS_H |