0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.1.0078: "..." used inconsistently in messages

Problem:    "..." used inconsistently in messages.
Solution:   Drop the space before " ...".
This commit is contained in:
Bram Moolenaar 2018-06-19 14:23:53 +02:00
parent 5c3670718b
commit c166927a32
3 changed files with 8 additions and 6 deletions

View File

@ -5270,7 +5270,7 @@ recursive_regmatch(
} }
else else
{ {
EMSG(_("Could not open temporary log file for writing, displaying on stderr ... ")); EMSG(_("Could not open temporary log file for writing, displaying on stderr... "));
log_fd = stderr; log_fd = stderr;
} }
#endif #endif

View File

@ -2241,7 +2241,7 @@ spell_read_aff(spellinfo_T *spin, char_u *fname)
return NULL; 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); spell_message(spin, IObuff);
/* Only do REP lines when not done in another .aff file already. */ /* Only do REP lines when not done in another .aff file already. */
@ -3569,7 +3569,7 @@ spell_read_dic(spellinfo_T *spin, char_u *fname, afffile_T *affile)
hash_init(&ht); hash_init(&ht);
vim_snprintf((char *)IObuff, IOSIZE, vim_snprintf((char *)IObuff, IOSIZE,
_("Reading dictionary file %s ..."), fname); _("Reading dictionary file %s..."), fname);
spell_message(spin, IObuff); spell_message(spin, IObuff);
/* start with a message for the first line */ /* start with a message for the first line */
@ -4149,7 +4149,7 @@ spell_read_wordfile(spellinfo_T *spin, char_u *fname)
return FAIL; 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); spell_message(spin, IObuff);
/* /*
@ -5865,7 +5865,7 @@ sug_write(spellinfo_T *spin, char_u *fname)
} }
vim_snprintf((char *)IObuff, IOSIZE, vim_snprintf((char *)IObuff, IOSIZE,
_("Writing suggestion file %s ..."), fname); _("Writing suggestion file %s..."), fname);
spell_message(spin, IObuff); spell_message(spin, IObuff);
/* /*
@ -6150,7 +6150,7 @@ mkspell(
* Write the info in the spell file. * Write the info in the spell file.
*/ */
vim_snprintf((char *)IObuff, IOSIZE, vim_snprintf((char *)IObuff, IOSIZE,
_("Writing spell file %s ..."), wfname); _("Writing spell file %s..."), wfname);
spell_message(&spin, IObuff); spell_message(&spin, IObuff);
error = write_vim_spell(&spin, wfname) == FAIL; error = write_vim_spell(&spin, wfname) == FAIL;

View File

@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
78,
/**/ /**/
77, 77,
/**/ /**/