comparison src/userfunc.c @ 27457:4c16acb2525f v8.2.4257

patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Commit: https://github.com/vim/vim/commit/62aec93bfdb9e1b40d03a6d2e8e9511f8b1bdb2d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 29 21:45:34 2022 +0000 patch 8.2.4257: Vim9: finding global function without g: prefix inconsistent Problem: Vim9: finding global function without g: prefix but not finding global variable is inconsistent. Solution: Require using g: for a global function. Change the vim9.vim script into a Vim9 script with exports. Fix that import in legacy script does not work.
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 Jan 2022 23:00:05 +0100
parents 9a9c34c84cd4
children a14c4d3e3260
comparison
equal deleted inserted replaced
27456:a8e2d91995ce 27457:4c16acb2525f
3787 { 3787 {
3788 sid_buf[0] = K_SPECIAL; 3788 sid_buf[0] = K_SPECIAL;
3789 sid_buf[1] = KS_EXTRA; 3789 sid_buf[1] = KS_EXTRA;
3790 sid_buf[2] = (int)KE_SNR; 3790 sid_buf[2] = (int)KE_SNR;
3791 vim_snprintf((char *)sid_buf + 3, sizeof(sid_buf) - 3, 3791 vim_snprintf((char *)sid_buf + 3, sizeof(sid_buf) - 3,
3792 "%ld_", (long)current_sctx.sc_sid); 3792 "%ld_", (long)lv.ll_sid);
3793 name = concat_str(sid_buf, lv.ll_name); 3793 name = concat_str(sid_buf, lv.ll_name);
3794 } 3794 }
3795 *lv.ll_name_end = cc; 3795 *lv.ll_name_end = cc;
3796 *pp = end; 3796 *pp = end;
3797 goto theend; 3797 goto theend;