mirror of
https://github.com/vim/vim.git
synced 2025-11-02 09:17:47 -05:00
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:
committed by
Bram Moolenaar
parent
8ce3ca8961
commit
cc65040986
@@ -115,6 +115,9 @@ static char version[] __attribute__((used)) =
|
||||
VIM_VERSION_MINOR_STR
|
||||
# ifdef PATCHLEVEL
|
||||
"." PATCHLEVEL
|
||||
# endif
|
||||
# ifdef BUILDDATE
|
||||
" (" BUILDDATE ")"
|
||||
# endif
|
||||
;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user