comparison src/errors.h @ 26240:640b62dbf6cb v8.2.3651

patch 8.2.3651: Vim9: no error for :lock or :unlock with unknown variable Commit: https://github.com/vim/vim/commit/04b568b38f848293e1ae0e680685280151acb386 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 22 21:58:41 2021 +0000 patch 8.2.3651: Vim9: no error for :lock or :unlock with unknown variable Problem: Vim9: no error for :lock or :unlock with unknown variable. Solution: Give an error. (closes https://github.com/vim/vim/issues/9188)
author Bram Moolenaar <Bram@vim.org>
date Mon, 22 Nov 2021 23:00:03 +0100
parents 8b8470b511f5
children 92fbed13ca4d
comparison
equal deleted inserted replaced
26239:5187470e768c 26240:640b62dbf6cb
684 INIT(= N_("E1243: ASCII code not in 32-127 range")); 684 INIT(= N_("E1243: ASCII code not in 32-127 range"));
685 EXTERN char e_bad_color_string_str[] 685 EXTERN char e_bad_color_string_str[]
686 INIT(= N_("E1244: Bad color string: %s")); 686 INIT(= N_("E1244: Bad color string: %s"));
687 EXTERN char e_cannot_expand_sfile_in_vim9_function[] 687 EXTERN char e_cannot_expand_sfile_in_vim9_function[]
688 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function")); 688 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
689 EXTERN char e_cannot_find_variable_to_unlock_str[]
690 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));