aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2014-04-01 12:21:55 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-02 18:52:16 -0300
commit8bae6840452050a24e16e6bb197897846a93522d (patch)
treeb2303b040fa160c06c627a1cbcc791f2651092b1 /src
parentf9d4b14f25967a300ee99da7dc692aabe3be7bb6 (diff)
downloadrneovim-8bae6840452050a24e16e6bb197897846a93522d.tar.gz
rneovim-8bae6840452050a24e16e6bb197897846a93522d.tar.bz2
rneovim-8bae6840452050a24e16e6bb197897846a93522d.zip
remove HAVE_DATE_TIME
__DATE__ and __TIME__ are C99 standard predefined macros.
Diffstat (limited to 'src')
-rw-r--r--src/version.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/version.c b/src/version.c
index 3f1fd25ae3..fe058d94e6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -23,11 +23,7 @@
char *Version = VIM_VERSION_SHORT;
static char *mediumVersion = VIM_VERSION_MEDIUM;
-#if defined(HAVE_DATE_TIME) || defined(PROTO)
char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
-#else // if defined(HAVE_DATE_TIME) || defined(PROTO)
-char *longVersion = VIM_VERSION_LONG;
-#endif // if defined(HAVE_DATE_TIME) || defined(PROTO)
static void list_features(void);
static void version_msg(char *s);