Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.1.0079: superfluous space in messages
Problem:    Superfluous space in messages.
Solution:   Remove the spaces. (closes #3030)
  • Loading branch information
brammool committed Jun 19, 2018
1 parent d2f3a8b commit 8df6e5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui_w32.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
79,
/**/
78,
/**/
Expand Down

0 comments on commit 8df6e5d

Please sign in to comment.