view src/typemap @ 13839:ca8953d36264 v8.0.1791

patch 8.0.1791: using uint8_t does not work everywhere commit https://github.com/vim/vim/commit/9894e394b230723abefc05a1c9a336b05a63088b Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 5 14:29:06 2018 +0200 patch 8.0.1791: using uint8_t does not work everywhere Problem: Using uint8_t does not work everywhere. Solution: Use char_u instead.
author Christian Brabandt <cb@256bit.org>
date Sat, 05 May 2018 14:30:06 +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}\")