diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-19 19:20:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 19:20:39 +0800 |
commit | 2af9be3db59b2e26268dc62cb65e673e2f7d4783 (patch) | |
tree | 37d12b5e0ff7b9847c2504c544e691733015a577 /src/nvim/mbyte.c | |
parent | 5dc43265b1f966a9653cc552fa5301ee487a8116 (diff) | |
download | rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.tar.gz rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.tar.bz2 rneovim-2af9be3db59b2e26268dc62cb65e673e2f7d4783.zip |
vim-patch:8.1.1966: some code in options.c fits better elsewhere (#19840)
Problem: Some code in options.c fits better elsewhere.
Solution: Move functions from options.c to other files. (Yegappan
Lakshmanan, closes vim/vim#4889)
https://github.com/vim/vim/commit/e677df8d93772a705f40a94f3c871aee78fe4d99
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 2b2baeacbc..af9e214d92 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -50,9 +50,9 @@ #include "nvim/memline.h" #include "nvim/memory.h" #include "nvim/message.h" -#include "nvim/option.h" #include "nvim/os/os.h" #include "nvim/path.h" +#include "nvim/screen.h" #include "nvim/spell.h" #include "nvim/strings.h" |