comparison src/vim9.h @ 23695:e3d77689d356 v8.2.2389

patch 8.2.2389: test failure on a few systems Commit: https://github.com/vim/vim/commit/9b6344613eecfcf77c510d7b63fcc4b7b51aefbc Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 21 22:53:38 2021 +0100 patch 8.2.2389: test failure on a few systems Problem: Test failure on a few systems. Solution: Avoid that "char" value is negative.
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Jan 2021 23:00:05 +0100
parents 0d56d4f107d8
children 19073a768852
comparison
equal deleted inserted replaced
23694:7d29116429d0 23695:e3d77689d356
222 } opexpr_T; 222 } opexpr_T;
223 223
224 // arguments to ISN_CHECKTYPE 224 // arguments to ISN_CHECKTYPE
225 typedef struct { 225 typedef struct {
226 type_T *ct_type; 226 type_T *ct_type;
227 char ct_off; // offset in stack, -1 is bottom 227 char ct_off; // offset in stack (positive), 1 is bottom
228 char ct_arg_idx; // argument index or zero 228 char ct_arg_idx; // argument index or zero
229 } checktype_T; 229 } checktype_T;
230 230
231 // arguments to ISN_STORENR 231 // arguments to ISN_STORENR
232 typedef struct { 232 typedef struct {