diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-21 04:09:11 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-21 04:09:11 +0200 |
commit | a3a9ef9ad4ecf6ee1db98148d165755043d3ff04 (patch) | |
tree | ea161efef8bcf1c856bb6e39749584e1f0d78084 /src/nvim/undo_defs.h | |
parent | 3ce97879d09c5cbeba6fdc5ebd7525b127df18e0 (diff) | |
parent | dde3ece10ed4ee62744009fa1fd347be740fc845 (diff) | |
download | rneovim-a3a9ef9ad4ecf6ee1db98148d165755043d3ff04.tar.gz rneovim-a3a9ef9ad4ecf6ee1db98148d165755043d3ff04.tar.bz2 rneovim-a3a9ef9ad4ecf6ee1db98148d165755043d3ff04.zip |
Merge #7030 'refactor/single-include'
ref #5321
Diffstat (limited to 'src/nvim/undo_defs.h')
-rw-r--r-- | src/nvim/undo_defs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/undo_defs.h b/src/nvim/undo_defs.h index d841210815..6c7e2bba41 100644 --- a/src/nvim/undo_defs.h +++ b/src/nvim/undo_defs.h @@ -4,9 +4,10 @@ #include <time.h> // for time_t #include "nvim/pos.h" -#include "nvim/buffer_defs.h" #include "nvim/mark_defs.h" +typedef struct u_header u_header_T; + /* Structure to store info about the Visual area. */ typedef struct { pos_T vi_start; /* start pos of last VIsual */ @@ -15,8 +16,9 @@ typedef struct { colnr_T vi_curswant; /* MAXCOL from w_curswant */ } visualinfo_T; +#include "nvim/buffer_defs.h" + typedef struct u_entry u_entry_T; -typedef struct u_header u_header_T; struct u_entry { u_entry_T *ue_next; /* pointer to next entry in list */ linenr_T ue_top; /* number of line above undo block */ |