annotate src/vimio.h @ 13186:dc39ef257b60 v8.0.1467

patch 8.0.1467: libvterm doesn't handle illegal byte sequence correctly commit https://github.com/vim/vim/commit/fef4ddd5eb8816a6607a624aa401bcfa71a63def Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 4 14:49:57 2018 +0100 patch 8.0.1467: libvterm doesn't handle illegal byte sequence correctly Problem: Libvterm doesn't handle illegal byte sequence correctly. Solution: After the invalid code check if there is space to store another character. Allocate one more character. (zhykzhykzhyk, closes #2614, closes #2613)
author Christian Brabandt <cb@256bit.org>
date Sun, 04 Feb 2018 15:00: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