From: Bram Moolenaar Date: Sun, 24 Jan 2016 12:58:40 +0000 (+0100) Subject: patch 7.4.1162 X-Git-Tag: v7.4.1162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e3be26872307f9c53a9f37647a659091bdffb1f;p=thirdparty%2Fvim.git patch 7.4.1162 Problem: Missing error number in MzScheme. (Dominique Pelle) Solution: Add a proper error number. --- diff --git a/src/if_mzsch.c b/src/if_mzsch.c index 0884c9f5ee..9038195cb4 100644 --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -1290,7 +1290,7 @@ mzscheme_init(void) #endif if (load_base_module_failed || startup_mzscheme()) { - EMSG(_("Exxx: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded.")); + EMSG(_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded.")); return -1; } initialized = TRUE; diff --git a/src/version.c b/src/version.c index ca83550cd4..9d5e9840df 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1162, /**/ 1161, /**/