Skip to content

Commit

Permalink
patch 8.1.0078: "..." used inconsistently in messages
Browse files Browse the repository at this point in the history
Problem:    "..." used inconsistently in messages.
Solution:   Drop the space before " ...".
  • Loading branch information
brammool committed Jun 19, 2018
1 parent 5c36707 commit c166927
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/regexp_nfa.c
Expand Up @@ -5270,7 +5270,7 @@ recursive_regmatch(
}
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;
}
#endif
Expand Down
10 changes: 5 additions & 5 deletions src/spellfile.c
Expand Up @@ -2241,7 +2241,7 @@ 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. */
Expand Down Expand Up @@ -3569,7 +3569,7 @@ 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 */
Expand Down Expand Up @@ -4149,7 +4149,7 @@ 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);

/*
Expand Down Expand Up @@ -5865,7 +5865,7 @@ 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);

/*
Expand Down Expand Up @@ -6150,7 +6150,7 @@ mkspell(
* 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;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
78,
/**/
77,
/**/
Expand Down

0 comments on commit c166927

Please sign in to comment.