diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-24 13:58:40 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-24 13:58:40 +0100 |
commit | 9e3be26872307f9c53a9f37647a659091bdffb1f (patch) | |
tree | 9b62883070a3b4a5673b6a4e8a30b52cf6c767bb /src/if_mzsch.c | |
parent | 2faa29f896252073b53f387406109e331fbbe5f8 (diff) | |
download | vim-git-9e3be26872307f9c53a9f37647a659091bdffb1f.tar.gz |
patch 7.4.1162v7.4.1162
Problem: Missing error number in MzScheme. (Dominique Pelle)
Solution: Add a proper error number.
Diffstat (limited to 'src/if_mzsch.c')
-rw-r--r-- | src/if_mzsch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_mzsch.c b/src/if_mzsch.c index 0884c9f5e..9038195cb 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; |