annotate src/vimio.h @ 10982:5e20c9f96cd5 v8.0.0380

patch 8.0.0380: with 'linebreak' double wide char wraps badly commit https://github.com/vim/vim/commit/38632faf635f6434441827e136bceb5a930c59ad Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 26 19:40:59 2017 +0100 patch 8.0.0380: with 'linebreak' double wide char wraps badly Problem: With 'linebreak' set and 'breakat' includes ">" a double-wide character results in "<<" displayed. Solution: Check for the character not to be replaced. (Ozaki Kiichi, closes #1456)
author Christian Brabandt <cb@256bit.org>
date Sun, 26 Feb 2017 19:45:04 +0100
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