]> granicus.if.org Git - vim/commitdiff
patch 8.1.0078: "..." used inconsistently in messages v8.1.0078
authorBram Moolenaar <Bram@vim.org>
Tue, 19 Jun 2018 12:23:53 +0000 (14:23 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 19 Jun 2018 12:23:53 +0000 (14:23 +0200)
Problem:    "..." used inconsistently in messages.
Solution:   Drop the space before " ...".

src/regexp_nfa.c
src/spellfile.c
src/version.c

index 90fff64b5e8df15a818292ca498c31ee3fc78f73..fe0df3503ee7aaa8c474ac360662b02868a216cd 100644 (file)
@@ -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
index 496e07f8f6912c67a61fd6010210d056f6ff41f7..67f36b94aa998674d3a1f44517d4a44a9ceeedaa 100644 (file)
@@ -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;
index 354066fb34a419f3cde10108f904c034f78429b8..f28a3468b6134a21b1d4debcaadee5c3d4b86ffe 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    78,
 /**/
     77,
 /**/