vim-patch:9.1.1193: Unnecessary use of STRCAT() in au_event_disable() (#32829)

Problem:  Unnecessary use of STRCAT() in au_event_disable().  STRCAT()
          seeks to the end of new_ei, but here the end is already known.
Solution: Use STRCPY() and add p_ei_len to new_ei.  Also fix a typo in a
          comment.  Add a test that 'eventignore' works in :argdo
          (zeertzjq).

closes: vim/vim#16844

969e11a18b

Cherry-pick p_ei_len from patch 9.1.0256.
This commit is contained in:
zeertzjq
2025-03-11 06:54:17 +08:00
committed by GitHub
parent 1f49a59b8b
commit 7e2b75760f
3 changed files with 30 additions and 4 deletions

View File

@@ -4528,7 +4528,7 @@ static int open_cmdwin(void)
State = MODE_NORMAL;
setmouse();
// Reset here so it can be set by a CmdWinEnter autocommand.
// Reset here so it can be set by a CmdwinEnter autocommand.
cmdwin_result = 0;
// Trigger CmdwinEnter autocommands.