view src/typemap @ 17636:1687c8935ab6 v8.1.1815

patch 8.1.1815: duplicating info for internal functions commit https://github.com/vim/vim/commit/7a4ea1df2f85e00286c49db1145e3a38b35557f4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 21:35:12 2019 +0200 patch 8.1.1815: duplicating info for internal functions Problem: Duplicating info for internal functions. Solution: Use one table to list internal functions.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 21:45:04 +0200
parents dec4338a7da2
children
line wrap: on
line source

TYPEMAP
VIWIN	T_VIOBJNOMUNGE
VIBUF	T_VIOBJNOMUNGE

INPUT
T_VIOBJNOMUNGE
	if (sv_isa($arg, \"${ntype}\")) {
	    IV tmp = SvIV((SV*)SvRV($arg));
	    $var = INT2PTR($type, tmp);
	    if (!tmp)
		croak(\"$ntype no longer exists\");
	}
	else
	    croak(\"$var is not of type ${ntype}\")