diff options
author | MichaHoffmann <michoffmann.potsdam@gmail.com> | 2018-10-07 12:24:29 +0200 |
---|---|---|
committer | MichaHoffmann <michoffmann.potsdam@gmail.com> | 2018-10-07 12:24:29 +0200 |
commit | 2c84421de2e36b0e7e8d406d491d57c1b599fd30 (patch) | |
tree | b1ebea15c04e448ad3ed63a6d33e65fd48948278 /src/nvim/spellfile.c | |
parent | 8cb04c2230f64e90de68250f822c511b4b137462 (diff) | |
download | rneovim-2c84421de2e36b0e7e8d406d491d57c1b599fd30.tar.gz rneovim-2c84421de2e36b0e7e8d406d491d57c1b599fd30.tar.bz2 rneovim-2c84421de2e36b0e7e8d406d491d57c1b599fd30.zip |
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
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r-- | src/nvim/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index 0fc9aaf3b5..8be8d24b9f 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -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. |