@@ 3356,11 3356,14 @@ int load_module(string module_file)
perror("\nLoading " + module_file + "... ");
#endif
+#if 0
if(prog = cache_lookup("modules", module_file)) {
err = catch {
obj = prog(this_object());
};
- } else {
+ } else
+#endif /* 0 */
+ {
object e = ErrorContainer();
master()->set_inhibit_compile_errors(e);
err = catch {
@@ 3469,7 3472,9 @@ int load_module(string module_file)
perror(" Done.\n");
#endif
#endif
+#if 0
cache_set("modules", module_file, modules[module_file]["program"], -1); // Chanhed to store cached module for ever.
+#endif /* 0 */
return 1;
}