diff options
author | Andrew Innes <andrewi@gnu.org> | 1999-02-20 20:50:20 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1999-02-20 20:50:20 +0000 |
commit | b78e8d0afb7b08553456226350b3829a1853344d (patch) | |
tree | 238057848b69f1c48e146dca0eb9330d7f847981 /src/vm-limit.c | |
parent | 2b9a4fe9b810ac11d6dd11ffba08ad005e41bbd1 (diff) | |
download | emacs-b78e8d0afb7b08553456226350b3829a1853344d.tar.gz |
(memory_warnings) [WINDOWSNT]: Reset lim_data on each
run, since size can vary from run to run.
Diffstat (limited to 'src/vm-limit.c')
-rw-r--r-- | src/vm-limit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vm-limit.c b/src/vm-limit.c index b23beeb26e7..eb43e836bae 100644 --- a/src/vm-limit.c +++ b/src/vm-limit.c @@ -130,4 +130,9 @@ memory_warnings (start, warnfun) warn_function = warnfun; __after_morecore_hook = check_memory_limits; + +#ifdef WINDOWSNT + /* Force data limit to be recalculated on each run. */ + lim_data = 0; +#endif } |