changeset 14364:d876b8588731 v8.1.0197

patch 8.1.0197: Windows GUI: title for search/replace is wrong commit https://github.com/vim/vim/commit/9e42c866484fe0199e8b17e7c44489386173acc9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 20 05:03:16 2018 +0200 patch 8.1.0197: Windows GUI: title for search/replace is wrong Problem: Windows GUI: title for search/replace is wrong. Solution: Remove remark about doubling backslash. (closes https://github.com/vim/vim/issues/3230)
author Christian Brabandt <cb@256bit.org>
date Fri, 20 Jul 2018 05:15:04 +0200
parents dcae605ebd07
children e8c4114adecb
files src/gui_w32.c src/version.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -2820,8 +2820,7 @@ gui_mch_find_dialog(exarg_T *eap)
 		s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
 	}
 
-	set_window_title(s_findrep_hwnd,
-			       _("Find string (use '\\\\' to find a '\\')"));
+	set_window_title(s_findrep_hwnd, _("Find string"));
 	(void)SetFocus(s_findrep_hwnd);
 
 	s_findrep_is_find = TRUE;
@@ -2855,8 +2854,7 @@ gui_mch_replace_dialog(exarg_T *eap)
 					   (LPFINDREPLACE) &s_findrep_struct);
 	}
 
-	set_window_title(s_findrep_hwnd,
-			    _("Find & Replace (use '\\\\' to find a '\\')"));
+	set_window_title(s_findrep_hwnd, _("Find & Replace"));
 	(void)SetFocus(s_findrep_hwnd);
 
 	s_findrep_is_find = FALSE;
--- a/src/version.c
+++ b/src/version.c
@@ -790,6 +790,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    197,
+/**/
     196,
 /**/
     195,