comparison src/ex_docmd.c @ 27645:1712b102d642 v8.2.4348

patch 8.2.4348: "legacy exe cmd" does not do what one would expect Commit: https://github.com/vim/vim/commit/5b1d6e98c6610553fe3946086cdba77718bd69d5 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 11 20:33:48 2022 +0000 patch 8.2.4348: "legacy exe cmd" does not do what one would expect Problem: "legacy exe cmd" does not do what one would expect. Solution: Apply the "legacy" and "vim9script" command modifiers to the argument of ":execute".
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Feb 2022 21:45:03 +0100
parents 269f89efb06a
children 4097434c7c67
comparison
equal deleted inserted replaced
27644:666f8cbb90dd 27645:1712b102d642
2784 { 2784 {
2785 char_u *p; 2785 char_u *p;
2786 int starts_with_colon = FALSE; 2786 int starts_with_colon = FALSE;
2787 2787
2788 CLEAR_POINTER(cmod); 2788 CLEAR_POINTER(cmod);
2789 cmod->cmod_flags = sticky_cmdmod_flags;
2789 2790
2790 // Repeat until no more command modifiers are found. 2791 // Repeat until no more command modifiers are found.
2791 for (;;) 2792 for (;;)
2792 { 2793 {
2793 while (*eap->cmd == ' ' || *eap->cmd == '\t' || *eap->cmd == ':') 2794 while (*eap->cmd == ' ' || *eap->cmd == '\t' || *eap->cmd == ':')