# HG changeset patch # User Richard M. Stallman # Date 718835880 0 # Node ID cb0830eb1ce7941886f015d268d812cd3b8be83c # Parent 92df75f4167f95f88dabc6bdf0281b907e7fe5f8 (Fdump_emacs, main): Use memory_warnings. diff -r 92df75f4167f -r cb0830eb1ce7 src/emacs.c --- a/src/emacs.c Sun Oct 11 20:37:32 1992 +0000 +++ b/src/emacs.c Sun Oct 11 20:38:00 1992 +0000 @@ -310,7 +310,7 @@ #ifndef SYSTEM_MALLOC if (! initialized) - malloc_init (0, malloc_warning); + memory_warnings (0, malloc_warning); #endif /* not SYSTEM_MALLOC */ #ifdef PRIO_PROCESS @@ -688,7 +688,7 @@ /* Tell malloc where start of impure now is */ /* Also arrange for warnings when nearly out of space. */ #ifndef SYSTEM_MALLOC - malloc_init (&my_edata, malloc_warning); + memory_warnings (&my_edata, malloc_warning); #endif map_out_data (XSTRING (intoname)->data); @@ -733,7 +733,7 @@ /* Tell malloc where start of impure now is */ /* Also arrange for warnings when nearly out of space. */ #ifndef SYSTEM_MALLOC - malloc_init (&my_edata, malloc_warning); + memory_warnings (&my_edata, malloc_warning); #endif unexec (XSTRING (intoname)->data, !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0);