comparison src/vim9compile.c @ 23513:872239543313 v8.2.2299

patch 8.2.2299: Vim9: invalid memory access making error message flaky Commit: https://github.com/vim/vim/commit/d1510ee9469f623c872a18b6e3c3666c0fb23c58 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 4 16:15:58 2021 +0100 patch 8.2.2299: Vim9: invalid memory access making error message flaky Problem: Vim9: invalid memory access making error message flaky. Solution: Do not check cmd_argt for CMD_USER. (issue https://github.com/vim/vim/issues/7467)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jan 2021 16:30:03 +0100
parents bb29b09902d5
children 8cce160b9183
comparison
equal deleted inserted replaced
23512:bfa661680680 23513:872239543313
7794 } 7794 }
7795 } 7795 }
7796 p = find_ex_command(&ea, NULL, starts_with_colon ? NULL 7796 p = find_ex_command(&ea, NULL, starts_with_colon ? NULL
7797 : (int (*)(char_u *, size_t, void *, cctx_T *))lookup_local, 7797 : (int (*)(char_u *, size_t, void *, cctx_T *))lookup_local,
7798 &cctx); 7798 &cctx);
7799
7800 if (p == NULL)
7801 {
7802 if (cctx.ctx_skip != SKIP_YES)
7803 emsg(_(e_ambiguous_use_of_user_defined_command));
7804 goto erret;
7805 }
7799 7806
7800 if (p == ea.cmd && ea.cmdidx != CMD_SIZE) 7807 if (p == ea.cmd && ea.cmdidx != CMD_SIZE)
7801 { 7808 {
7802 if (cctx.ctx_skip == SKIP_YES) 7809 if (cctx.ctx_skip == SKIP_YES)
7803 { 7810 {