From 75c19464ed7fb6024af64747379e61abc4e4a483 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 12 Feb 2017 18:34:05 +0100 Subject: patch 8.0.0327: error message in cmdline window is not translated Problem: The E11 error message in the command line window is not translated. Solution: use _(). (Hirohito Higashi) --- src/ex_docmd.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 09102b5370..14ef2bd929 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2490,7 +2490,7 @@ do_one_cmd( && !IS_USER_CMDIDX(ea.cmdidx)) { /* Command not allowed when editing the command line. */ - errormsg = get_text_locked_msg(); + errormsg = (char_u *)_(get_text_locked_msg()); goto doend; } #ifdef FEAT_AUTOCMD diff --git a/src/version.c b/src/version.c index 381a6d5d4d..e95fed6ba2 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 327, /**/ 326, /**/ -- cgit v1.2.3