diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-08-02 20:05:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-08-02 20:05:32 +0200 |
commit | 364ab2ffd3ecc88f9547c28d51c138d53fead488 (patch) | |
tree | c0c14e73941121f4842458d88a6f290cbad7adc1 /src/if_perl.xs | |
parent | bc88a275375c65538c2eaadb55d4ddc26346f695 (diff) | |
download | vim-git-364ab2ffd3ecc88f9547c28d51c138d53fead488.tar.gz |
updated for version 7.4b.010v7.4b.010
Problem: Win32: Tcl library load does not use standard mechanism.
Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r-- | src/if_perl.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs index 4c46f2abb..a2247f022 100644 --- a/src/if_perl.xs +++ b/src/if_perl.xs @@ -495,7 +495,7 @@ static struct { /* * Make all runtime-links of perl. * - * 1. Get module handle using LoadLibraryEx. + * 1. Get module handle using dlopen() or vimLoadLib(). * 2. Get pointer to perl function by GetProcAddress. * 3. Repeat 2, until get all functions will be used. * |