comparison src/main.c @ 1894:afb740b5dfab v7.2.191

updated for version 7.2-191
author vimboss
date Tue, 26 May 2009 20:59:55 +0000
parents c8f343a465a2
children 82f866f19e91
comparison
equal deleted inserted replaced
1893:a75120dc3e26 1894:afb740b5dfab
933 933
934 TIME_MSG("before starting main loop"); 934 TIME_MSG("before starting main loop");
935 935
936 /* 936 /*
937 * Call the main command loop. This never returns. 937 * Call the main command loop. This never returns.
938 */ 938 * For embedded MzScheme the main_loop will be called by Scheme
939 * for proper stack tracking
940 */
941 #ifndef FEAT_MZSCHEME
939 main_loop(FALSE, FALSE); 942 main_loop(FALSE, FALSE);
943 #else
944 mzscheme_main();
945 #endif
940 946
941 return 0; 947 return 0;
942 } 948 }
943 #endif /* PROTO */ 949 #endif /* PROTO */
944 950