Skip to content

Commit 9e42c86

Browse files
committed
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)
1 parent f63db65 commit 9e42c86

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/gui_w32.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2820,8 +2820,7 @@ gui_mch_find_dialog(exarg_T *eap)
28202820
s_findrep_hwnd = FindText((LPFINDREPLACE) &s_findrep_struct);
28212821
}
28222822

2823-
set_window_title(s_findrep_hwnd,
2824-
_("Find string (use '\\\\' to find a '\\')"));
2823+
set_window_title(s_findrep_hwnd, _("Find string"));
28252824
(void)SetFocus(s_findrep_hwnd);
28262825

28272826
s_findrep_is_find = TRUE;
@@ -2855,8 +2854,7 @@ gui_mch_replace_dialog(exarg_T *eap)
28552854
(LPFINDREPLACE) &s_findrep_struct);
28562855
}
28572856

2858-
set_window_title(s_findrep_hwnd,
2859-
_("Find & Replace (use '\\\\' to find a '\\')"));
2857+
set_window_title(s_findrep_hwnd, _("Find & Replace"));
28602858
(void)SetFocus(s_findrep_hwnd);
28612859

28622860
s_findrep_is_find = FALSE;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,8 @@ static char *(features[]) =
789789

790790
static int included_patches[] =
791791
{ /* Add new patch number below this line */
792+
/**/
793+
197,
792794
/**/
793795
196,
794796
/**/

0 commit comments

Comments
 (0)