diff options
| author | Michael Ennen <mike.ennen@gmail.com> | 2016-12-16 14:51:49 -0700 |
|---|---|---|
| committer | Michael Ennen <mike.ennen@gmail.com> | 2017-02-14 17:38:18 -0700 |
| commit | 53fad45115d3ee438dfb537d99ccf3b021ebc6b7 (patch) | |
| tree | 9143f619985d8a02ce03fa5f56cee60c45d5f460 /src/nvim/buffer_defs.h | |
| parent | 1f715ac1c1a1eee43360be911636020ed855e12c (diff) | |
| download | rneovim-53fad45115d3ee438dfb537d99ccf3b021ebc6b7.tar.gz rneovim-53fad45115d3ee438dfb537d99ccf3b021ebc6b7.tar.bz2 rneovim-53fad45115d3ee438dfb537d99ccf3b021ebc6b7.zip | |
vim-patch:7.4.2137
Problem: Using function() with a name will find another function when it is
redefined.
Solution: Add funcref(). Refer to lambda using a partial. Fix several
reference counting issues.
https://github.com/vim/vim/commit/437bafe4c8a83ed71ee006eda7f54b65a90f0d4c
Diffstat (limited to 'src/nvim/buffer_defs.h')
| -rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 73d06de964..9c5c7859ff 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -31,8 +31,6 @@ typedef struct { #include "nvim/hashtab.h" // for dict_T #include "nvim/eval_defs.h" -// for proftime_T -#include "nvim/profile.h" // for String #include "nvim/api/private/defs.h" // for Map(K, V) @@ -90,7 +88,6 @@ typedef struct { typedef struct window_S win_T; typedef struct wininfo_S wininfo_T; typedef struct frame_S frame_T; -typedef int scid_T; /* script ID */ // for struct memline (it needs memfile_T) #include "nvim/memline_defs.h" |
