From ebbcb824baf770e42ad53c532905a329d762e94e Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 23 Oct 2010 14:02:54 +0200 Subject: updated for version 7.3.034 Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library. --- src/if_mzsch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/if_mzsch.c') diff --git a/src/if_mzsch.c b/src/if_mzsch.c index f31ea0663b..d940fd94be 100644 --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -556,8 +556,8 @@ mzscheme_runtime_link_init(char *sch_dll, char *gc_dll, int verbose) if (hMzGC && hMzSch) return OK; - hMzSch = LoadLibrary(sch_dll); - hMzGC = LoadLibrary(gc_dll); + hMzSch = vimLoadLib(sch_dll); + hMzGC = vimLoadLib(gc_dll); if (!hMzSch) { -- cgit v1.2.3