vim-patch:partial:8.1.1981: the evalfunc.c file is too big (#24490)

Problem:    The evalfunc.c file is too big.
Solution:   Move undo functions to undo.c.  Move cmdline functions to
            ex_getln.c.  Move some container functions to list.c.

08c308aeb5

Undo functions only. Cmdline functions have already been moved.
A lot of container functions have been added to eval/funcs.c instead of
list.c in previously ported Vim 8.2.x patches, so deal with that later.

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
zeertzjq
2023-07-26 15:18:09 +08:00
committed by GitHub
parent 14d047ad2f
commit b8b7782037
3 changed files with 38 additions and 39 deletions

View File

@@ -39,6 +39,7 @@ hashpipe:write([[
#include "nvim/strings.h"
#include "nvim/sign.h"
#include "nvim/testing.h"
#include "nvim/undo.h"
]])