Mercurial > vim
annotate src/vimio.h @ 18874:ff39fc87f6b3 v8.1.2423
patch 8.1.2423: MS-Windows properties shows version as "8, 1, 0"
Commit: https://github.com/vim/vim/commit/e24437b643650cd51d402bd9c603f941fa0cc1a1
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Dec 11 22:41:29 2019 +0100
patch 8.1.2423: MS-Windows properties shows version as "8, 1, 0"
Problem: MS-Windows properties shows version as "8, 1, 0".
Solution: Use "8.1.0". (Ken Takata, closes https://github.com/vim/vim/issues/5342)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 11 Dec 2019 22:45:04 +0100 |
parents | 6e3dc2d630c2 |
children | 1cae476a7c82 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
3927
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
714 | 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 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
10042
diff
changeset
|
10 // Visual Studio 2005 has 'deprecated' many of the standard CRT functions |
714 | 11 #if _MSC_VER >= 1400 |
12 # define _CRT_SECURE_NO_DEPRECATE | |
13 # define _CRT_NONSTDC_NO_DEPRECATE | |
14 #endif | |
15 | |
18753
6e3dc2d630c2
patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
10042
diff
changeset
|
16 // cproto fails on missing include files |
3927 | 17 #ifndef PROTO |
18 # include <io.h> | |
19 #endif |