patch 8.1.1981: the evalfunc.c file is too big
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.
diff --git a/src/proto/undo.pro b/src/proto/undo.pro
index de918fc..93b9909 100644
--- a/src/proto/undo.pro
+++ b/src/proto/undo.pro
@@ -28,4 +28,6 @@
int bufIsChangedNotTerm(buf_T *buf);
int curbufIsChanged(void);
void u_eval_tree(u_header_T *first_uhp, list_T *list);
+void f_undofile(typval_T *argvars, typval_T *rettv);
+void f_undotree(typval_T *argvars, typval_T *rettv);
/* vim: set ft=c : */