changeset 14124:b9b0e4966e7a v8.1.0079

patch 8.1.0079: superfluous space in messages commit https://github.com/vim/vim/commit/8df6e5d4670891608e791244b0c2ec0db387f710 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 19 14:45:37 2018 +0200 patch 8.1.0079: superfluous space in messages Problem: Superfluous space in messages. Solution: Remove the spaces. (closes https://github.com/vim/vim/issues/3030)
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Jun 2018 15:00:07 +0200
parents 583bf95b6c84
children c9043bfbbbd7
files src/gui_w32.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -2821,7 +2821,7 @@ gui_mch_find_dialog(exarg_T *eap)
 	}
 
 	set_window_title(s_findrep_hwnd,
-			       _("Find string (use '\\\\' to find  a '\\')"));
+			       _("Find string (use '\\\\' to find a '\\')"));
 	(void)SetFocus(s_findrep_hwnd);
 
 	s_findrep_is_find = TRUE;
@@ -2856,7 +2856,7 @@ gui_mch_replace_dialog(exarg_T *eap)
 	}
 
 	set_window_title(s_findrep_hwnd,
-			    _("Find & Replace (use '\\\\' to find  a '\\')"));
+			    _("Find & Replace (use '\\\\' to find a '\\')"));
 	(void)SetFocus(s_findrep_hwnd);
 
 	s_findrep_is_find = FALSE;
--- 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 */
 /**/
+    79,
+/**/
     78,
 /**/
     77,