annotate src/typemap @ 19756:fe90a71a3fed
v8.2.0434
patch 8.2.0434: MS-Windows with VTP: Normal color not working
Commit: https://github.com/vim/vim/commit/a8bd3496380ceb32e544dfe39cb4d52e4943068c
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Mar 23 21:45:29 2020 +0100
patch 8.2.0434: MS-Windows with VTP: Normal color not working
Problem: MS-Windows with VTP: Normal color not working.
Solution: After changing the Normal color update the VTP console color.
(Nobuhiro Takasaki, closes #5836)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 23 Mar 2020 22:00:05 +0100 |
parents |
dec4338a7da2 |
children |
|
rev |
line source |
7
|
1 TYPEMAP
|
|
2 VIWIN T_VIOBJNOMUNGE
|
|
3 VIBUF T_VIOBJNOMUNGE
|
|
4
|
|
5 INPUT
|
|
6 T_VIOBJNOMUNGE
|
|
7 if (sv_isa($arg, \"${ntype}\")) {
|
|
8 IV tmp = SvIV((SV*)SvRV($arg));
|
3344
|
9 $var = INT2PTR($type, tmp);
|
7
|
10 if (!tmp)
|
|
11 croak(\"$ntype no longer exists\");
|
|
12 }
|
|
13 else
|
|
14 croak(\"$var is not of type ${ntype}\")
|