annotate src/vimio.h @ 8761:f8707ec9efe4
v7.4.1669
commit https://github.com/vim/vim/commit/8b877ac38e96424a08a8b8eb713ef4b3cf0064be
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Mar 28 19:16:20 2016 +0200
patch 7.4.1669
Problem: When writing buffer lines to a pipe Vim may block.
Solution: Avoid blocking, write more lines later.
author |
Christian Brabandt <cb@256bit.org> |
date |
Mon, 28 Mar 2016 19:30:05 +0200 |
parents |
e6d8b44065bc |
children |
4aead6a9b7a9 |
rev |
line source |
714
|
1 /* 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 * See README.txt for an overview of the Vim source code.
|
|
8 */
|
|
9
|
|
10 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
|
|
11 #if _MSC_VER >= 1400
|
|
12 # define _CRT_SECURE_NO_DEPRECATE
|
|
13 # define _CRT_NONSTDC_NO_DEPRECATE
|
|
14 #endif
|
|
15
|
3927
|
16 /* cproto fails on missing include files */
|
|
17 #ifndef PROTO
|
|
18 # include <io.h>
|
|
19 #endif
|