]> granicus.if.org Git - vim/commitdiff
patch 8.1.0197: Windows GUI: title for search/replace is wrong v8.1.0197
authorBram Moolenaar <Bram@vim.org>
Fri, 20 Jul 2018 03:03:16 +0000 (05:03 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 20 Jul 2018 03:03:16 +0000 (05:03 +0200)
Problem:    Windows GUI: title for search/replace is wrong.
Solution:   Remove remark about doubling backslash. (closes #3230)

src/gui_w32.c
src/version.c

index 147d98b3913774717572947419c76093906c9ff6..8574b63facc1725747884bbfd8fcc33091179b48 100644 (file)
@@ -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;
index 83518a98e838e59ec2d51bf652c453c6b5a7da98..86413b0a062a48a0b228570e518f4b26e4770852 100644 (file)
@@ -789,6 +789,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    197,
 /**/
     196,
 /**/