aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-08-04 19:09:46 +0200
committerGitHub <noreply@github.com>2018-08-04 19:09:46 +0200
commita4c944762315c535fc7986d734e383eccc9f1863 (patch)
tree4fa951da0daf4b691f4d2b50099dc1e3d7dbb5fd /src/nvim/buffer_defs.h
parent2b9fc9a13f1404260448c129762a2679ac688372 (diff)
parentc83ecee88506e81f7ec178300005db0d202c646d (diff)
downloadrneovim-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.h3
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