mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 17:58:18 +00:00
vim-patch:8.1.0078: "..." used inconsistently in messages
Problem: "..." used inconsistently in messages.
Solution: Drop the space before " ...".
c166927a32
This commit is contained in:
@@ -1993,7 +1993,7 @@ static afffile_T *spell_read_aff(spellinfo_T *spin, char_u *fname)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s ..."), fname);
|
||||
vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s..."), fname);
|
||||
spell_message(spin, IObuff);
|
||||
|
||||
// Only do REP lines when not done in another .aff file already.
|
||||
@@ -3032,7 +3032,7 @@ static int spell_read_dic(spellinfo_T *spin, char_u *fname, afffile_T *affile)
|
||||
hash_init(&ht);
|
||||
|
||||
vim_snprintf((char *)IObuff, IOSIZE,
|
||||
_("Reading dictionary file %s ..."), fname);
|
||||
_("Reading dictionary file %s..."), fname);
|
||||
spell_message(spin, IObuff);
|
||||
|
||||
// start with a message for the first line
|
||||
@@ -3548,7 +3548,7 @@ static int spell_read_wordfile(spellinfo_T *spin, char_u *fname)
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s ..."), fname);
|
||||
vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s..."), fname);
|
||||
spell_message(spin, IObuff);
|
||||
|
||||
// Read all the lines in the file one by one.
|
||||
@@ -4998,7 +4998,7 @@ static void sug_write(spellinfo_T *spin, char_u *fname)
|
||||
}
|
||||
|
||||
vim_snprintf((char *)IObuff, IOSIZE,
|
||||
_("Writing suggestion file %s ..."), fname);
|
||||
_("Writing suggestion file %s..."), fname);
|
||||
spell_message(spin, IObuff);
|
||||
|
||||
// <SUGHEADER>: <fileID> <versionnr> <timestamp>
|
||||
@@ -5234,7 +5234,7 @@ mkspell (
|
||||
if (!error && !got_int) {
|
||||
// Write the info in the spell file.
|
||||
vim_snprintf((char *)IObuff, IOSIZE,
|
||||
_("Writing spell file %s ..."), wfname);
|
||||
_("Writing spell file %s..."), wfname);
|
||||
spell_message(&spin, IObuff);
|
||||
|
||||
error = write_vim_spell(&spin, wfname) == FAIL;
|
||||
|
Reference in New Issue
Block a user