Mercurial > vim
annotate src/version.h @ 3310:60f6df978a41 v7.3.422
updated for version 7.3.422
Problem: Python 3 does not have __members__.
Solution: Add "name" and "number" in another way. (lilydjwg)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 04 Feb 2012 20:17:26 +0100 |
parents | 073ff46fe397 |
children | 6ec6b7ff2d43 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
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 | |
16 #define VIM_VERSION_MAJOR 7 | |
17 #define VIM_VERSION_MAJOR_STR "7" | |
2154
7c8c7c95a865
First step in the Vim 7.3 branch. Changed version numbers.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
18 #define VIM_VERSION_MINOR 3 |
7c8c7c95a865
First step in the Vim 7.3 branch. Changed version numbers.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
19 #define VIM_VERSION_MINOR_STR "3" |
7 | 20 #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR) |
21 | |
2572
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
22 #define VIM_VERSION_BUILD 277 |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
23 #define VIM_VERSION_BUILD_BCD 0x115 |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
24 #define VIM_VERSION_BUILD_STR "277" |
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 */ | |
2165
733f0dc510c3
Undo changes that are meant for the Vim 7.3 branch.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
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 */ | |
2572
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
36 #define VIM_VERSION_NODOT "vim73" |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
37 #define VIM_VERSION_SHORT "7.3" |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
38 #define VIM_VERSION_MEDIUM "7.3" |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
39 #define VIM_VERSION_LONG "VIM - Vi IMproved 7.3 (2010 Aug 15)" |
ee53a39d5896
Last changes for the 7.3 release!
Bram Moolenaar <bram@vim.org>
parents:
2561
diff
changeset
|
40 #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.3 (2010 Aug 15, compiled " |