Mercurial > vim
annotate src/version.h @ 11252:d7c1d5f7cf2a v8.0.0512
patch 8.0.0512: check for available characters takes too long
commit https://github.com/vim/vim/commit/1572e30607e9a3bee9750242bf37168f7d2b6e66
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 25 20:16:28 2017 +0100
patch 8.0.0512: check for available characters takes too long
Problem: Check for available characters takes too long.
Solution: Only check did_start_blocking if wtime is negative. (Daisuke
Suzuki, closes #1591)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 25 Mar 2017 20:30:04 +0100 |
parents | 9f48eab77d62 |
children | 1174611ad715 |
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" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
18 #define VIM_VERSION_MINOR 0 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
19 #define VIM_VERSION_MINOR_STR "0" |
7 | 20 #define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR) |
21 | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
22 #define VIM_VERSION_BUILD 281 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
23 #define VIM_VERSION_BUILD_BCD 0x119 |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
24 #define VIM_VERSION_BUILD_STR "281" |
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 */ | |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
36 #define VIM_VERSION_NODOT "vim80" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
37 #define VIM_VERSION_SHORT "8.0" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
38 #define VIM_VERSION_MEDIUM "8.0" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
39 #define VIM_VERSION_LONG "VIM - Vi IMproved 8.0 (2016 Sep 12)" |
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
40 #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 8.0 (2016 Sep 12, compiled " |