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

Problem:    "..." used inconsistently in messages.
Solution:   Drop the space before " ...".
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c
index 90fff64..fe0df35 100644
--- a/src/regexp_nfa.c
+++ b/src/regexp_nfa.c
@@ -5270,7 +5270,7 @@
     }
     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
diff --git a/src/spellfile.c b/src/spellfile.c
index 496e07f..67f36b9 100644
--- a/src/spellfile.c
+++ b/src/spellfile.c
@@ -2241,7 +2241,7 @@
 	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 @@
     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 @@
 	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 @@
     }
 
     vim_snprintf((char *)IObuff, IOSIZE,
-				  _("Writing suggestion file %s ..."), fname);
+				  _("Writing suggestion file %s..."), fname);
     spell_message(spin, IObuff);
 
     /*
@@ -6150,7 +6150,7 @@
 	     * 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;
diff --git a/src/version.c b/src/version.c
index 354066f..f28a346 100644
--- a/src/version.c
+++ b/src/version.c
@@ -762,6 +762,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    78,
+/**/
     77,
 /**/
     76,