summaryrefslogtreecommitdiff
path: root/src/spellfile.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-19 14:23:53 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-19 14:23:53 +0200
commitc166927a32fe5c054ad35deecff00aa12c629cf7 (patch)
tree30e4773ac192881b9e7b927460c06c2976f4195f /src/spellfile.c
parent5c3670718bebacb3a9a54522cab2924a6bfbc3d4 (diff)
downloadvim-git-c166927a32fe5c054ad35deecff00aa12c629cf7.tar.gz
patch 8.1.0078: "..." used inconsistently in messagesv8.1.0078
Problem: "..." used inconsistently in messages. Solution: Drop the space before " ...".
Diffstat (limited to 'src/spellfile.c')
-rw-r--r--src/spellfile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/spellfile.c b/src/spellfile.c
index 496e07f8f..67f36b94a 100644
--- a/src/spellfile.c
+++ b/src/spellfile.c
@@ -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. */
@@ -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 */
@@ -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);
/*
@@ -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);
/*
@@ -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;