diff options
| author | Po Lu | 2022-12-09 09:25:42 +0800 |
|---|---|---|
| committer | Po Lu | 2022-12-09 09:25:42 +0800 |
| commit | 67ef92fb0e95e63e718e8066f13b9b1942885801 (patch) | |
| tree | 56d15437a158a3cd4462ce8c9bc2c24cef793490 /src | |
| parent | 6ccdda3df2e8cd4a0f408d2d84c64b69d29f40a5 (diff) | |
| download | emacs-67ef92fb0e95e63e718e8066f13b9b1942885801.tar.gz emacs-67ef92fb0e95e63e718e8066f13b9b1942885801.zip | |
Revert "; * src/emacs.c (main): Improvements to last change."
This reverts commit c774e83e36784ab96539c5c083b3bcb6d0158a8c. It
causes crashes on GNU/Linux systems using libgmp, as there a shared
library initializer is used to set the malloc functions on startup, so
they are not dumped.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c index 2d924da1cdb..d8a2863fd9c 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1937,9 +1937,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1937 | } | 1937 | } |
| 1938 | 1938 | ||
| 1939 | init_alloc (); | 1939 | init_alloc (); |
| 1940 | #ifndef HAVE_UNEXEC | ||
| 1941 | init_bignum (); | 1940 | init_bignum (); |
| 1942 | #endif | ||
| 1943 | init_threads (); | 1941 | init_threads (); |
| 1944 | init_eval (); | 1942 | init_eval (); |
| 1945 | running_asynch_code = 0; | 1943 | running_asynch_code = 0; |