diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-08 11:35:44 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-08-08 20:03:40 +0800 |
commit | bc8fbb7c1de0e5cbc8650be883a675bdc3e9d7d8 (patch) | |
tree | 6585857c6d9ca3b4903ef23bfce5676aa1bdee4a /src/nvim/eval | |
parent | a46e6afb8b95229478c5c1fb75e3f1c55991def0 (diff) | |
download | rneovim-bc8fbb7c1de0e5cbc8650be883a675bdc3e9d7d8.tar.gz rneovim-bc8fbb7c1de0e5cbc8650be883a675bdc3e9d7d8.tar.bz2 rneovim-bc8fbb7c1de0e5cbc8650be883a675bdc3e9d7d8.zip |
refactor: move non-symbols in mbyte.h to mbyte_defs.h
This just avoids including mbyte.h in eval/typval.h, so that mbyte.h can
include eval/typval.h in Vim patch 8.2.1535.
Diffstat (limited to 'src/nvim/eval')
-rw-r--r-- | src/nvim/eval/typval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index c02351947b..2a4dd7b146 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -13,7 +13,7 @@ #include "nvim/hashtab.h" #include "nvim/lib/queue.h" #include "nvim/macros.h" -#include "nvim/mbyte.h" +#include "nvim/mbyte_defs.h" #include "nvim/message.h" #include "nvim/pos.h" // for linenr_T #include "nvim/profile.h" // for proftime_T |