diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-04 19:09:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-04 19:09:46 +0200 |
commit | a4c944762315c535fc7986d734e383eccc9f1863 (patch) | |
tree | 4fa951da0daf4b691f4d2b50099dc1e3d7dbb5fd /src/nvim/buffer_defs.h | |
parent | 2b9fc9a13f1404260448c129762a2679ac688372 (diff) | |
parent | c83ecee88506e81f7ec178300005db0d202c646d (diff) | |
download | rneovim-a4c944762315c535fc7986d734e383eccc9f1863.tar.gz rneovim-a4c944762315c535fc7986d734e383eccc9f1863.tar.bz2 rneovim-a4c944762315c535fc7986d734e383eccc9f1863.zip |
Merge #8799 from janlazo/nvim-8.0.1541
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 057f99e341..9ff62a80af 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -94,6 +94,7 @@ typedef struct { typedef struct window_S win_T; typedef struct wininfo_S wininfo_T; typedef struct frame_S frame_T; +typedef uint16_t disptick_T; // display tick type // for struct memline (it needs memfile_T) #include "nvim/memline_defs.h" @@ -425,7 +426,7 @@ typedef struct { synstate_T *b_sst_firstfree; int b_sst_freecount; linenr_T b_sst_check_lnum; - uint16_t b_sst_lasttick; /* last display tick */ + disptick_T b_sst_lasttick; // last display tick // for spell checking garray_T b_langp; // list of pointers to slang_T, see spell.c |