diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-11 20:33:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-11 20:33:48 +0000 |
commit | 5b1d6e98c6610553fe3946086cdba77718bd69d5 (patch) | |
tree | eaf6cc403e6f80de9a36b892c260c967d26e419b /src/globals.h | |
parent | bd89d4406327d3a30517443a4a518f49ebc99368 (diff) | |
download | vim-git-5b1d6e98c6610553fe3946086cdba77718bd69d5.tar.gz |
patch 8.2.4348: "legacy exe cmd" does not do what one would expectv8.2.4348
Problem: "legacy exe cmd" does not do what one would expect.
Solution: Apply the "legacy" and "vim9script" command modifiers to the
argument of ":execute".
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 2f6a4b41a..8bc537ed7 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1156,6 +1156,7 @@ EXTERN int mapped_ctrl_c INIT(= FALSE); // modes where CTRL-C is mapped EXTERN int ctrl_c_interrupts INIT(= TRUE); // CTRL-C sets got_int EXTERN cmdmod_T cmdmod; // Ex command modifiers +EXTERN int sticky_cmdmod_flags INIT(= 0); // used by :execute #ifdef FEAT_EVAL EXTERN int is_export INIT(= FALSE); // :export {cmd} |