I tried Minimal Racket installer and actually its raco.exe doesn't have ctool subcommand. So it seems related to build option.
With Minimal Racket, if_mzscheme doesn't work because Minimal Racket doesn't have "scheme/base" module. Replacing it with "racket/base" module will work. I'm not sure if it doesn't have side effect. With this change, test70 still fails because test70 uses r5rs module and Minimal Racket doesn't have it. for if_mzscheme3.diff diff --git a/src/if_mzsch.c b/src/if_mzsch.c index da23353..1cc6807 100644 --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -1021,7 +1021,7 @@ mzscheme_env_main(Scheme_Env *env, int argc, char **argv) static Scheme_Object* load_base_module(void *data) { - scheme_namespace_require(scheme_intern_symbol("scheme/base")); + scheme_namespace_require(scheme_intern_symbol("racket/base")); return scheme_null; } @@ -1270,7 +1270,7 @@ mzscheme_init(void) #endif if (load_base_module_failed || startup_mzscheme()) { - EMSG(_("Exxx: Sorry, this command is disabled, the MzScheme's scheme/base module could not be loaded.")); + EMSG(_("Exxx: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded.")); return -1; } initialized = TRUE; -- Yukihiro Nakadaira - yukihiro.nakada...@gmail.com -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.