Mercurial > vim
annotate src/version.h @ 15543:dd725a8ab112 v8.1.0779
patch 8.1.0779: argument for message functions is inconsistent
commit https://github.com/vim/vim/commit/32526b3c1846025f0e655f41efd4e5428da16b6c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 19 17:43:09 2019 +0100
patch 8.1.0779: argument for message functions is inconsistent
Problem: Argument for message functions is inconsistent.
Solution: Make first argument to msg() "char *".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 19 Jan 2019 17:45:07 +0100 |
parents | ddf160d82971 |
children | 6e3dc2d630c2 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
5294
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * Define the version number, name, etc. | |
11 * The patchlevel is in included_patches[], in version.c. | |
12 * | |
1214 | 13 * This doesn't use string concatenation, some compilers don't support it. |
7 | 14 */ |
15 | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
16 #define VIM_VERSION_MAJOR 8 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
17 #define VIM_VERSION_MAJOR_STR "8" |
13963 | 18 #define VIM_VERSION_MINOR 1 |
19 #define VIM_VERSION_MINOR_STR "1" | |
7 | 20 #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR) |
21 | |
13963 | 22 #define VIM_VERSION_BUILD 282 |
23 #define VIM_VERSION_BUILD_BCD 0x11a | |
24 #define VIM_VERSION_BUILD_STR "282" | |
7 | 25 #define VIM_VERSION_PATCHLEVEL 0 |
26 #define VIM_VERSION_PATCHLEVEL_STR "0" | |
27 /* Used by MacOS port should be one of: development, alpha, beta, final */ | |
5294 | 28 #define VIM_VERSION_RELEASE final |
7 | 29 |
30 /* | |
31 * VIM_VERSION_NODOT is used for the runtime directory name. | |
32 * VIM_VERSION_SHORT is copied into the swap file (max. length is 6 chars). | |
33 * VIM_VERSION_MEDIUM is used for the startup-screen. | |
34 * VIM_VERSION_LONG is used for the ":version" command and "Vim -h". | |
35 */ | |
13963 | 36 #define VIM_VERSION_NODOT "vim81" |
37 #define VIM_VERSION_SHORT "8.1" | |
38 #define VIM_VERSION_MEDIUM "8.1" | |
14171
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
39 #define VIM_VERSION_LONG "VIM - Vi IMproved 8.1 (2018 May 18)" |
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
40 #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 8.1 (2018 May 18, compiled " |
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
41 #define VIM_VERSION_LONG_ONLY "VIM - Vi IMproved 8.1" |
ddf160d82971
patch 8.1.0103: long version string cannot be translated
Christian Brabandt <cb@256bit.org>
parents:
13963
diff
changeset
|
42 #define VIM_VERSION_DATE_ONLY "2018 May 18" |