summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-19 14:45:37 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-19 14:45:37 +0200
commit8df6e5d4670891608e791244b0c2ec0db387f710 (patch)
treee8501af1044b535d6feb7ba4adb960b1539ab58f
parentd2f3a8b8787333abf2300d38836b196955f10c00 (diff)
patch 8.1.0079: superfluous space in messagesv8.1.0079
Problem: Superfluous space in messages. Solution: Remove the spaces. (closes #3030)
-rw-r--r--src/gui_w32.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 350b6fc43a..49aa1e0bd2 100644
--- 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
index f28a3468b6..85ffd16171 100644
--- 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,