0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 8.1.0103: long version string cannot be translated

Problem:    Long version string cannot be translated.
Solution:   Build the string in init_longVersion().
This commit is contained in:
Bram Moolenaar
2018-06-23 16:12:21 +02:00
parent 1f8c469fe2
commit 35fb6fbf72
5 changed files with 31 additions and 11 deletions

View File

@@ -1131,12 +1131,12 @@ EXTERN char_u tolower_tab[256]; /* table for tolower() */
EXTERN char breakat_flags[256]; /* which characters are in 'breakat' */
#endif
/* these are in version.c */
/* These are in version.c, call init_longVersion() before use. */
extern char *Version;
#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
extern char longVersion[];
#else
extern char *longVersion;
EXTERN char *longVersion;
#endif
/*