summaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-21 19:25:37 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-21 19:25:37 +0200
commitdefa067c54874dd987121dd7252c62755e0aebfa (patch)
tree4734b054e299ab86a5141b29a5305f7782edd81a /src/proto.h
parented997adaa1e9bd057ce732a73d933b739e9d0c30 (diff)
downloadvim-git-defa067c54874dd987121dd7252c62755e0aebfa.tar.gz
patch 8.1.1727: code for viminfo support is spread outv8.1.1727
Problem: Code for viminfo support is spread out. Solution: Move to code to viminfo.c. (Yegappan Lakshmanan, closes #4686)
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h
index e85454610..cc1c8fb39 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -107,6 +107,9 @@ extern int _stricoll(char *a, char *b);
# ifdef FEAT_ARABIC
# include "arabic.pro"
# endif
+# ifdef FEAT_VIMINFO
+# include "viminfo.pro"
+# endif
/* These prototypes cannot be produced automatically. */
int smsg(const char *, ...)