aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-06-02 11:24:02 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-06-02 11:24:02 -0300
commitcab8cf970c09ea465d30e11eb356e2e5d37dc544 (patch)
tree5d274c892e4d53f5e976ae8f6f58aba030785e02 /src/nvim/version.c
parent52a9a5b0b0c53a1481d901f39ed0d1e7e86c3853 (diff)
parent4aecb71b0e819aa84a430dacdab2146229c410a5 (diff)
downloadrneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.tar.gz
rneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.tar.bz2
rneovim-cab8cf970c09ea465d30e11eb356e2e5d37dc544.zip
Merge pull request #710 'Automatically generate declarations'
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 0b899532e3..3deb9eb7c6 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -25,9 +25,10 @@ static char *mediumVersion = VIM_VERSION_MEDIUM;
char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
-static void list_features(void);
-static void version_msg(char *s);
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "version.c.generated.h"
+#endif
static char *(features[]) = {
#ifdef HAVE_ACL
"+acl",
@@ -749,7 +750,6 @@ static void version_msg(char *s)
}
}
-static void do_intro_line(int row, char_u *mesg, int add_version, int attr);
/// Show the intro message when not editing a file.
void maybe_intro_message(void)