# HG changeset patch # User Christian Brabandt # Date 1529413207 -7200 # Node ID b9b0e4966e7a08511dfb881f5fcb7a16acfcf282 # Parent 583bf95b6c84b5f095633e209fc4362bc5bd9b27 patch 8.1.0079: superfluous space in messages commit https://github.com/vim/vim/commit/8df6e5d4670891608e791244b0c2ec0db387f710 Author: Bram Moolenaar Date: Tue Jun 19 14:45:37 2018 +0200 patch 8.1.0079: superfluous space in messages Problem: Superfluous space in messages. Solution: Remove the spaces. (closes https://github.com/vim/vim/issues/3030) diff --git a/src/gui_w32.c b/src/gui_w32.c --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2821,7 +2821,7 @@ gui_mch_find_dialog(exarg_T *eap) } set_window_title(s_findrep_hwnd, - _("Find string (use '\\\\' to find a '\\')")); + _("Find string (use '\\\\' to find a '\\')")); (void)SetFocus(s_findrep_hwnd); s_findrep_is_find = TRUE; @@ -2856,7 +2856,7 @@ gui_mch_replace_dialog(exarg_T *eap) } set_window_title(s_findrep_hwnd, - _("Find & Replace (use '\\\\' to find a '\\')")); + _("Find & Replace (use '\\\\' to find a '\\')")); (void)SetFocus(s_findrep_hwnd); s_findrep_is_find = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 79, +/**/ 78, /**/ 77,