annotate src/vimio.h @ 13992:710b1bb82f2c v8.1.0014

patch 8.1.0014: qf_init_ext() is too long commit https://github.com/vim/vim/commit/6053f2d29a979ffed1fe01b0a2f28e23750530e9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 21 16:56:38 2018 +0200 patch 8.1.0014: qf_init_ext() is too long Problem: qf_init_ext() is too long. Solution: Split it into multiple functions. (Yegappan Lakshmanan, closes #2939)
author Christian Brabandt <cb@256bit.org>
date Mon, 21 May 2018 17:00:06 +0200
parents 4aead6a9b7a9
children 6e3dc2d630c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
2 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
4 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
8 */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
9
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
10 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
11 #if _MSC_VER >= 1400
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
12 # define _CRT_SECURE_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
13 # define _CRT_NONSTDC_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
14 #endif
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
15
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
16 /* cproto fails on missing include files */
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
17 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
18 # include <io.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
19 #endif