src/nvim/eval.c

src/nvim/eval/typval.c
src/nvim/fileio.c
src/nvim/main.c
src/nvim/regexp_nfa.c
src/nvim/spellfile.c

changed some EMSG[..] Macros to emsgf
This commit is contained in:
MichaHoffmann
2018-10-07 12:24:29 +02:00
parent 8cb04c2230
commit 2c84421de2
6 changed files with 49 additions and 49 deletions

View File

@@ -828,7 +828,7 @@ static void command_line_scan(mparm_T *parmp)
msgpack_packer *p = msgpack_packer_new(&fp, msgpack_file_write);
if (fof_ret != 0) {
EMSG2(_("E5421: Failed to open stdin: %s"), os_strerror(fof_ret));
emsgf(_("E5421: Failed to open stdin: %s"), os_strerror(fof_ret));
}
if (p == NULL) {