0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

Fix duplicated code that only appears in git.

This commit is contained in:
Bram Moolenaar 2020-06-06 13:17:59 +02:00
parent 8f1dde5021
commit fe712ced6e

View File

@ -60,14 +60,10 @@ init_longVersion(void)
{
if (longVersion == NULL)
{
#ifdef BUILD_DATE
char *date_time = BUILD_DATE;
#else
#ifdef BUILD_DATE
char *date_time = BUILD_DATE;
#else
char *date_time = __DATE__ " " __TIME__;
#endif
#endif
char *msg = _("%s (%s, compiled %s)");
size_t len = strlen(msg)