comparison src/vim9script.c @ 23942:39cf2d8e7edf v8.2.2513

patch 8.2.2513: Vim9: missing part of :vim9cmd change Commit: https://github.com/vim/vim/commit/9979fcd72ed671ec2c98800587c3a6996adb27d4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 14 13:30:01 2021 +0100 patch 8.2.2513: Vim9: missing part of :vim9cmd change Problem: Vim9: missing part of :vim9cmd change. Solution: Use command modifier in in_vim9script().
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Feb 2021 13:45:03 +0100
parents 4b417b776b95
children 54b2aa1f0d42
comparison
equal deleted inserted replaced
23941:0551ce224ea7 23942:39cf2d8e7edf
21 in_vim9script(void) 21 in_vim9script(void)
22 { 22 {
23 // Do not go up the stack, a ":function" inside vim9script uses legacy 23 // Do not go up the stack, a ":function" inside vim9script uses legacy
24 // syntax. "sc_version" is also set when compiling a ":def" function in 24 // syntax. "sc_version" is also set when compiling a ":def" function in
25 // legacy script. 25 // legacy script.
26 return current_sctx.sc_version == SCRIPT_VERSION_VIM9; 26 return current_sctx.sc_version == SCRIPT_VERSION_VIM9
27 || (cmdmod.cmod_flags & CMOD_VIM9CMD);
27 } 28 }
28 29
29 /* 30 /*
30 * ":vim9script". 31 * ":vim9script".
31 */ 32 */