summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-26 20:59:55 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-26 20:59:55 +0000
commit9e70cf192e0957e7e8e1e83f3f9f64822a7a96ee (patch)
tree0f3719130b48bcb33d4f012f6389215bdcf9006c /src/main.c
parent42b9436cf88929bf176d3a812b2840d530c5d522 (diff)
updated for version 7.2-191v7.2.191
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index c0dd121425..84aa146e76 100644
--- a/src/main.c
+++ b/src/main.c
@@ -935,8 +935,14 @@ main
/*
* Call the main command loop. This never returns.
+ * For embedded MzScheme the main_loop will be called by Scheme
+ * for proper stack tracking
*/
+#ifndef FEAT_MZSCHEME
main_loop(FALSE, FALSE);
+#else
+ mzscheme_main();
+#endif
return 0;
}