diff options
Diffstat (limited to 'src/nvim/undo_defs.h')
-rw-r--r-- | src/nvim/undo_defs.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/undo_defs.h b/src/nvim/undo_defs.h index 0b78ea543f..39786fa928 100644 --- a/src/nvim/undo_defs.h +++ b/src/nvim/undo_defs.h @@ -4,10 +4,8 @@ #include "nvim/extmark_defs.h" #include "nvim/mark_defs.h" -#include "nvim/pos_defs.h" -/// Size in bytes of the hash used in the undo file. -enum { UNDO_HASH_SIZE = 32, }; +enum { UNDO_HASH_SIZE = 32, }; ///< Size in bytes of the hash used in the undo file. typedef struct u_header u_header_T; @@ -19,8 +17,6 @@ typedef struct { colnr_T vi_curswant; ///< MAXCOL from w_curswant } visualinfo_T; -#include "nvim/buffer_defs.h" - typedef struct u_entry u_entry_T; struct u_entry { u_entry_T *ue_next; ///< pointer to next entry in list |