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

@@ -5136,7 +5136,7 @@ mkspell (
} else if (vim_strchr(path_tail(wfname), '_') != NULL) {
EMSG(_("E751: Output file name must not have region name"));
} else if (incount > MAXREGIONS) {
EMSG2(_("E754: Only up to %d regions supported"), MAXREGIONS);
emsgf(_("E754: Only up to %d regions supported"), MAXREGIONS);
} else {
// Check for overwriting before doing things that may take a lot of
// time.