Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 909:a703d313962d
[xemacs-hg @ 2002-07-09 11:55:35 by michaels]
2002-07-08 Mike Sperber <mike@xemacs.org>
* ralloc.c (init_ralloc): Allocate properly for pdump.
* emacs.c (main_1): Revert init_ralloc patch in favor of an
easier-to-understand solution.
author | michaels |
---|---|
date | Tue, 09 Jul 2002 11:55:36 +0000 |
parents | 4a27df428c73 |
children | 151d438d2d55 |
comparison
equal
deleted
inserted
replaced
908:aa5bf79c0076 | 909:a703d313962d |
---|---|
787 clearerr (stdin); | 787 clearerr (stdin); |
788 | 788 |
789 #if defined (HAVE_MMAP) && defined (REL_ALLOC) | 789 #if defined (HAVE_MMAP) && defined (REL_ALLOC) |
790 /* ralloc can only be used if using the GNU memory allocator. */ | 790 /* ralloc can only be used if using the GNU memory allocator. */ |
791 init_ralloc (); | 791 init_ralloc (); |
792 #ifdef PDUMP | |
793 init_ralloc (); | |
794 #endif | |
795 #elif defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC) | 792 #elif defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC) |
796 if (initialized) | 793 if (initialized) |
797 init_ralloc(); | 794 init_ralloc(); |
798 #endif | 795 #endif |
799 | 796 |