From df54d82b7c98ae5b1608c56e0dc216d77ebb3101 Mon Sep 17 00:00:00 2001 From: Björn Linse Date: Fri, 10 Dec 2021 18:05:49 +0100 Subject: 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. --- src/nvim/spell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/spell.c') 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" -- cgit