blob: 867ce8c4d12d5090b2254b0ca260cb97e3803265 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* 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 *
Bram Moolenaarccc18222007-05-10 18:25:20 +000013 * This doesn't use string concatenation, some compilers don't support it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 */
15
16#define VIM_VERSION_MAJOR 7
17#define VIM_VERSION_MAJOR_STR "7"
Bram Moolenaarfff2bee2010-05-15 13:56:02 +020018#define VIM_VERSION_MINOR 3
19#define VIM_VERSION_MINOR_STR "3"
Bram Moolenaar071d4272004-06-13 20:20:40 +000020#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
21
Bram Moolenaare04abda2010-08-01 22:35:43 +020022#define VIM_VERSION_BUILD 273
23#define VIM_VERSION_BUILD_BCD 0x111
24#define VIM_VERSION_BUILD_STR "273"
Bram Moolenaar071d4272004-06-13 20:20:40 +000025#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 */
Bram Moolenaarfff2bee2010-05-15 13:56:02 +020028#define VIM_VERSION_RELEASE beta
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
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 */
Bram Moolenaare04abda2010-08-01 22:35:43 +020036#define VIM_VERSION_NODOT "vim73d"
37#define VIM_VERSION_SHORT "7.3d"
38#define VIM_VERSION_MEDIUM "7.3d BETA"
Bram Moolenaar1affd722010-08-04 17:49:30 +020039#define VIM_VERSION_LONG "VIM - Vi IMproved 7.3d BETA (2010 Aug 4)"
40#define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.3d BETA (2010 Aug 4, compiled "