1
0
forked from aniani/vim

patch 8.2.3038: Amiga built-in version string doesn't include build date

Problem:    Amiga built-in version string doesn't include build date.
Solution:   Add the build date if available. (Ola Söder, closes #8437)
This commit is contained in:
ola.soder@axis.com
2021-06-23 15:52:46 +02:00
committed by Bram Moolenaar
parent 8ce3ca8961
commit cc65040986
2 changed files with 5 additions and 0 deletions

View File

@@ -115,6 +115,9 @@ static char version[] __attribute__((used)) =
VIM_VERSION_MINOR_STR
# ifdef PATCHLEVEL
"." PATCHLEVEL
# endif
# ifdef BUILDDATE
" (" BUILDDATE ")"
# endif
;
#endif

View File

@@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3038,
/**/
3037,
/**/