Merged from the latest developing branch.
[MacVim/jjgod.git] / src / version.h
blob8b7da33934695f47afea354778e53ddc3cc889c8
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
9 /*
10 * Define the version number, name, etc.
11 * The patchlevel is in included_patches[], in version.c.
13 * This doesn't use string concatenation, some compilers don't support it.
16 #define VIM_VERSION_MAJOR 7
17 #define VIM_VERSION_MAJOR_STR "7"
18 #define VIM_VERSION_MINOR 1
19 #define VIM_VERSION_MINOR_STR "1"
20 #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
22 #define VIM_VERSION_BUILD 265
23 #define VIM_VERSION_BUILD_BCD 0x109
24 #define VIM_VERSION_BUILD_STR "265"
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 */
28 #define VIM_VERSION_RELEASE final
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".
36 #define VIM_VERSION_NODOT "vim71"
37 #define VIM_VERSION_SHORT "7.1"
38 #define VIM_VERSION_MEDIUM "7.1"
39 #define VIM_VERSION_LONG "VIM - Vi IMproved 7.1 (2007 May 12)"
40 #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 7.1 (2007 May 12, compiled "