diff src/vm-limit.c @ 24366:274b79aeb3b7

(memory_warnings) [WINDOWSNT]: Reset lim_data on each run, since size can vary from run to run.
author Andrew Innes <andrewi@gnu.org>
date Sat, 20 Feb 1999 20:50:20 +0000
parents ee40177f6c68
children 9a026d470bc9
line wrap: on
line diff
--- a/src/vm-limit.c	Sat Feb 20 20:48:10 1999 +0000
+++ b/src/vm-limit.c	Sat Feb 20 20:50:20 1999 +0000
@@ -130,4 +130,9 @@
 
   warn_function = warnfun;
   __after_morecore_hook = check_memory_limits;
+
+#ifdef WINDOWSNT
+  /* Force data limit to be recalculated on each run.  */
+  lim_data = 0;
+#endif
 }