Skip to content

Commit 8df6e5d

Browse files
committed
patch 8.1.0079: superfluous space in messages
Problem: Superfluous space in messages. Solution: Remove the spaces. (closes #3030)
1 parent d2f3a8b commit 8df6e5d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/gui_w32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2821,7 +2821,7 @@ gui_mch_find_dialog(exarg_T *eap)
28212821
}
28222822

28232823
set_window_title(s_findrep_hwnd,
2824-
_("Find string (use '\\\\' to find a '\\')"));
2824+
_("Find string (use '\\\\' to find a '\\')"));
28252825
(void)SetFocus(s_findrep_hwnd);
28262826

28272827
s_findrep_is_find = TRUE;
@@ -2856,7 +2856,7 @@ gui_mch_replace_dialog(exarg_T *eap)
28562856
}
28572857

28582858
set_window_title(s_findrep_hwnd,
2859-
_("Find & Replace (use '\\\\' to find a '\\')"));
2859+
_("Find & Replace (use '\\\\' to find a '\\')"));
28602860
(void)SetFocus(s_findrep_hwnd);
28612861

28622862
s_findrep_is_find = FALSE;

src/version.c

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

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
79,
764766
/**/
765767
78,
766768
/**/

0 commit comments

Comments
 (0)