changeset 28189:7456bc6bf077 v8.2.4620

patch 8.2.4620: two letter substitute commands don't work Commit: https://github.com/vim/vim/commit/1e2c4175dce903986dac66ba9326ae562b159421 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 24 15:24:45 2022 +0000 patch 8.2.4620: two letter substitute commands don't work Problem: Two letter substitute commands don't work. (Yegappan Lakshmanan) Solution: Invert condition.
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Mar 2022 16:30:04 +0100
parents 01d18a7ad1cf
children 68db6dd59162
files src/ex_docmd.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3431,7 +3431,7 @@ skip_option_env_lead(char_u *start)
     static int
 one_letter_cmd(char_u *p, cmdidx_T *idx)
 {
-    if (!in_vim9script())
+    if (in_vim9script())
 	return FALSE;
     if (*p == 'k')
     {
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4620,
+/**/
     4619,
 /**/
     4618,