0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

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 #3230)
This commit is contained in:
Bram Moolenaar
2018-07-20 05:03:16 +02:00
parent f63db65b24
commit 9e42c86648
2 changed files with 4 additions and 4 deletions

View File

@@ -2820,8 +2820,7 @@ gui_mch_find_dialog(exarg_T *eap)
s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct); s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
} }
set_window_title(s_findrep_hwnd, set_window_title(s_findrep_hwnd, _("Find string"));
_("Find string (use '\\\\' to find a '\\')"));
(void)SetFocus(s_findrep_hwnd); (void)SetFocus(s_findrep_hwnd);
s_findrep_is_find = TRUE; s_findrep_is_find = TRUE;
@@ -2855,8 +2854,7 @@ gui_mch_replace_dialog(exarg_T *eap)
(LPFINDREPLACE) &s_findrep_struct); (LPFINDREPLACE) &s_findrep_struct);
} }
set_window_title(s_findrep_hwnd, set_window_title(s_findrep_hwnd, _("Find & Replace"));
_("Find & Replace (use '\\\\' to find a '\\')"));
(void)SetFocus(s_findrep_hwnd); (void)SetFocus(s_findrep_hwnd);
s_findrep_is_find = FALSE; s_findrep_is_find = FALSE;

View File

@@ -789,6 +789,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
197,
/**/ /**/
196, 196,
/**/ /**/