comparison src/ex_docmd.c @ 26909:aa65d1808bd0 v8.2.3983

patch 8.2.3983: error messages are spread out Commit: https://github.com/vim/vim/commit/eaaac014a01ce37c1f86dbda054c01a5c6f034e7 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 2 17:00:40 2022 +0000 patch 8.2.3983: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jan 2022 18:15:04 +0100
parents 7f150a4936f2
children 3631d2deb36c
comparison
equal deleted inserted replaced
26908:006aa45685f9 26909:aa65d1808bd0
4538 void 4538 void
4539 ex_ni(exarg_T *eap) 4539 ex_ni(exarg_T *eap)
4540 { 4540 {
4541 if (!eap->skip) 4541 if (!eap->skip)
4542 eap->errmsg = 4542 eap->errmsg =
4543 _("E319: Sorry, the command is not available in this version"); 4543 _(e_sorry_command_is_not_available_in_this_version);
4544 } 4544 }
4545 4545
4546 #ifdef HAVE_EX_SCRIPT_NI 4546 #ifdef HAVE_EX_SCRIPT_NI
4547 /* 4547 /*
4548 * Function called for script command which is Not Implemented. NI! 4548 * Function called for script command which is Not Implemented. NI!