summaryrefslogtreecommitdiff
path: root/src/proto/if_mzsch.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-02-12 01:55:55 +0100
committerBram Moolenaar <Bram@vim.org>2012-02-12 01:55:55 +0100
commitbbc98db7c45ed9c8a6bbc7e2ac7c67180ccbab16 (patch)
tree8066ae85f9917e7b16f69beff79c630176fb7d40 /src/proto/if_mzsch.pro
parentefcb54b78cfc4f396531cdac6af37e183bc9ee53 (diff)
downloadvim-git-bbc98db7c45ed9c8a6bbc7e2ac7c67180ccbab16.tar.gz
updated for version 7.3.441v7.3.441
Problem: Newer versions of MzScheme (Racket) require earlier (trampolined) initialisation. Solution: Call mzscheme_main() early in main(). (Sergey Khorev)
Diffstat (limited to 'src/proto/if_mzsch.pro')
-rw-r--r--src/proto/if_mzsch.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/if_mzsch.pro b/src/proto/if_mzsch.pro
index 60e99bdff..d1180bfa1 100644
--- a/src/proto/if_mzsch.pro
+++ b/src/proto/if_mzsch.pro
@@ -14,6 +14,7 @@ void mzvim_check_threads __ARGS((void));
void mzvim_reset_timer __ARGS((void));
void *mzvim_eval_string __ARGS((char_u *str));
int mzthreads_allowed __ARGS((void));
-void mzscheme_main __ARGS((void));
+int mzscheme_main __ARGS((int argc, char **argv));
void do_mzeval __ARGS((char_u *str, typval_T *rettv));
+int vim_main2 __ARGS((int argc, char **argv));
/* vim: set ft=c : */