Skip to content

Commit c166927

Browse files
committed
patch 8.1.0078: "..." used inconsistently in messages
Problem: "..." used inconsistently in messages. Solution: Drop the space before " ...".
1 parent 5c36707 commit c166927

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/regexp_nfa.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5270,7 +5270,7 @@ recursive_regmatch(
52705270
}
52715271
else
52725272
{
5273-
EMSG(_("Could not open temporary log file for writing, displaying on stderr ... "));
5273+
EMSG(_("Could not open temporary log file for writing, displaying on stderr... "));
52745274
log_fd = stderr;
52755275
}
52765276
#endif

src/spellfile.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2241,7 +2241,7 @@ spell_read_aff(spellinfo_T *spin, char_u *fname)
22412241
return NULL;
22422242
}
22432243

2244-
vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s ..."), fname);
2244+
vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s..."), fname);
22452245
spell_message(spin, IObuff);
22462246

22472247
/* 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)
35693569
hash_init(&ht);
35703570

35713571
vim_snprintf((char *)IObuff, IOSIZE,
3572-
_("Reading dictionary file %s ..."), fname);
3572+
_("Reading dictionary file %s..."), fname);
35733573
spell_message(spin, IObuff);
35743574

35753575
/* start with a message for the first line */
@@ -4149,7 +4149,7 @@ spell_read_wordfile(spellinfo_T *spin, char_u *fname)
41494149
return FAIL;
41504150
}
41514151

4152-
vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s ..."), fname);
4152+
vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s..."), fname);
41534153
spell_message(spin, IObuff);
41544154

41554155
/*
@@ -5865,7 +5865,7 @@ sug_write(spellinfo_T *spin, char_u *fname)
58655865
}
58665866

58675867
vim_snprintf((char *)IObuff, IOSIZE,
5868-
_("Writing suggestion file %s ..."), fname);
5868+
_("Writing suggestion file %s..."), fname);
58695869
spell_message(spin, IObuff);
58705870

58715871
/*
@@ -6150,7 +6150,7 @@ mkspell(
61506150
* Write the info in the spell file.
61516151
*/
61526152
vim_snprintf((char *)IObuff, IOSIZE,
6153-
_("Writing spell file %s ..."), wfname);
6153+
_("Writing spell file %s..."), wfname);
61546154
spell_message(&spin, IObuff);
61556155

61566156
error = write_vim_spell(&spin, wfname) == FAIL;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ static char *(features[]) =
761761

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
78,
764766
/**/
765767
77,
766768
/**/

0 commit comments

Comments
 (0)