comparison src/eval.c @ 15517:2ad5f0ffaa2e v8.1.0766

patch 8.1.0766: various problems when using Vim on VMS commit https://github.com/vim/vim/commit/88c86eb751de9e7e410b405084d35b32fafc2a24 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 17:13:30 2019 +0100 patch 8.1.0766: various problems when using Vim on VMS Problem: Various problems when using Vim on VMS. Solution: Various fixes. Define long_long_T. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 17:15:06 +0100
parents 99a4cc4782ac
children dd725a8ab112
comparison
equal deleted inserted replaced
15516:f9d855fe7971 15517:2ad5f0ffaa2e
7412 { 7412 {
7413 switch (varp->v_type) 7413 switch (varp->v_type)
7414 { 7414 {
7415 case VAR_NUMBER: 7415 case VAR_NUMBER:
7416 vim_snprintf((char *)buf, NUMBUFLEN, "%lld", 7416 vim_snprintf((char *)buf, NUMBUFLEN, "%lld",
7417 (long long)varp->vval.v_number); 7417 (long_long_T)varp->vval.v_number);
7418 return buf; 7418 return buf;
7419 case VAR_FUNC: 7419 case VAR_FUNC:
7420 case VAR_PARTIAL: 7420 case VAR_PARTIAL:
7421 emsg(_("E729: using Funcref as a String")); 7421 emsg(_("E729: using Funcref as a String"));
7422 break; 7422 break;