annotate src/typemap @ 16249:67e43b01497f
v8.1.1129
patch 8.1.1129: when making a new screendump test have to create the file
commit https://github.com/vim/vim/commit/2d7260d66575052124b76c8b97b957319111bfef
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 6 20:51:52 2019 +0200
patch 8.1.1129: when making a new screendump test have to create the file
Problem: When making a new screendump test have to create the file.
Solution: Continue creating the failed screendump, so it can be moved once
it is correct.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 06 Apr 2019 21:00:05 +0200 |
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}\")
|