fix(api): redundant error when using nvim_cmd

`nvim_cmd` shows multiple errors when attempting to edit another buffer
through a command when `curbuf->b_ro_locked` is set. This PR fixes that
by removing a redundant error in `execute_cmd`.
This commit is contained in:
Famiu Haque
2023-06-13 18:04:59 +06:00
parent a7e5d4238a
commit 3e6af30888

View File

@@ -1690,7 +1690,7 @@ int execute_cmd(exarg_T *eap, CmdParseInfo *cmdinfo, bool preview)
&& !(eap->cmdidx == CMD_file && *eap->arg == NUL)
&& !IS_USER_CMDIDX(eap->cmdidx)
&& curbuf_locked()) {
ERROR(_(e_cannot_edit_other_buf));
goto end;
}
correct_range(eap);