diff options
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r-- | src/nvim/ops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h index f2b38e5faf..dfa2d4b112 100644 --- a/src/nvim/ops.h +++ b/src/nvim/ops.h @@ -110,7 +110,7 @@ typedef struct { MotionType y_type; ///< Register type colnr_T y_width; ///< Register width (only valid for y_type == kBlockWise). Timestamp timestamp; ///< Time when register was last modified. - dict_T *additional_data; ///< Additional data from ShaDa file. + AdditionalData *additional_data; ///< Additional data from ShaDa file. } yankreg_T; /// Modes for get_yank_register() |