# HG changeset patch # User Christian Brabandt # Date 1456593306 -3600 # Node ID 738c2929d6adc577e37d2cbc01c794a7ea09c890 # Parent 2946aa80e93ad0d147930a4df71d40988b5f2e24 commit https://github.com/vim/vim/commit/4d1961783fdcb133b6b181acb7166b9f1872bf09 Author: Bram Moolenaar Date: Sat Feb 27 18:07:44 2016 +0100 patch 7.4.1432 Problem: Typo in button text. Solution: Fix the typo. (Dominique Pelle) diff --git a/src/gui_gtk.c b/src/gui_gtk.c --- a/src/gui_gtk.c +++ b/src/gui_gtk.c @@ -1661,7 +1661,7 @@ dialog_add_buttons(GtkDialog *dialog, ch else if (button_equal(label, "Ok")) label = _("OK"); else if (button_equal(label, "Yes")) label = _("Yes"); else if (button_equal(label, "No")) label = _("No"); - else if (button_equal(label, "Cancel")) label = _("Canccl"); + else if (button_equal(label, "Cancel")) label = _("Cancel"); # else if (button_equal(label, ok[0])) label = GTK_STOCK_OK; else if (button_equal(label, ync[0])) label = GTK_STOCK_YES; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1432, +/**/ 1431, /**/ 1430,