aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/spell.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-12-10 18:05:49 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2021-12-10 18:15:33 +0100
commitdf54d82b7c98ae5b1608c56e0dc216d77ebb3101 (patch)
tree760e7191587e7680ce2dfb52e6042ccbccaa1d7a /src/nvim/spell.c
parentdc37beed751ba64a61b64d1ed4d29cc8ba1e5bea (diff)
downloadrneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.tar.gz
rneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.tar.bz2
rneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.zip
refactor(misc1): move out high-level input functions to a new file: input.c
Possibly dialog code is messages.c could be moved here as well. misc1.c is now empty, so delete it.
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r--src/nvim/spell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c
index 85d1e139bf..bd31e98faa 100644
--- a/src/nvim/spell.c
+++ b/src/nvim/spell.c
@@ -94,12 +94,12 @@
#include "nvim/garray.h"
#include "nvim/getchar.h"
#include "nvim/hashtab.h"
+#include "nvim/input.h"
#include "nvim/mark.h"
#include "nvim/mbyte.h"
#include "nvim/memline.h"
#include "nvim/memory.h"
#include "nvim/message.h"
-#include "nvim/misc1.h"
#include "nvim/normal.h"
#include "nvim/option.h"
#include "nvim/os/input.h"