changeset 14121:97814084264b v8.1.0078

patch 8.1.0078: "..." used inconsistently in messages commit https://github.com/vim/vim/commit/c166927a32fe5c054ad35deecff00aa12c629cf7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 19 14:23:53 2018 +0200 patch 8.1.0078: "..." used inconsistently in messages Problem: "..." used inconsistently in messages. Solution: Drop the space before " ...".
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jun 2018 14:30:07 +0200
parents 165d4d07e1e5
children f1a54da4fb79
files src/regexp_nfa.c src/spellfile.c src/version.c
diffstat 3 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -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
--- a/src/spellfile.c
+++ b/src/spellfile.c
@@ -2241,7 +2241,7 @@ spell_read_aff(spellinfo_T *spin, char_u
 	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
     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, c
 	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 *fna
     }
 
     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;
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    78,
+/**/
     77,
 /**/
     76,