summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-09-04 09:30:57 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-09-04 09:31:53 -0700
commit1d84e6523250ab6d14f40fba3922c56d7a40416f (patch)
tree74155ea37e750ad19bc327fb3165b2cfd9440573 /src/alloc.c
parentfe042e9d15da7863b5beb4c2cc326a62d2c7fccb (diff)
downloademacs-1d84e6523250ab6d14f40fba3922c56d7a40416f.tar.gz
emacs-1d84e6523250ab6d14f40fba3922c56d7a40416f.tar.bz2
emacs-1d84e6523250ab6d14f40fba3922c56d7a40416f.zip
Fix bignum initialization
Problem reported by Andy Moreton in: https://lists.gnu.org/r/emacs-devel/2018-09/msg00072.html and crystal-ball diagnosis by Eli Zaretskii in: https://lists.gnu.org/r/emacs-devel/2018-09/msg00075.html * src/alloc.c (xrealloc_for_gmp, xfree_for_gmp): Move to bignum.c. (init_alloc): Move bignum initialization to init_bignum. * src/bignum.c (init_bignum): Rename from init_bignum_once. All users changed. * src/emacs.c (main): Call init_bignum after init_alloc, instead of calling init_bignum_once after init_bignum.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 1eab82d1c2b..28ca7804ee9 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -7126,18 +7126,6 @@ range_error (void)
xsignal0 (Qrange_error);
}
-static void *
-xrealloc_for_gmp (void *ptr, size_t ignore, size_t size)
-{
- return xrealloc (ptr, size);
-}
-
-static void
-xfree_for_gmp (void *ptr, size_t ignore)
-{
- xfree (ptr);
-}
-
/* Initialization. */
void
@@ -7171,10 +7159,6 @@ init_alloc_once (void)
void
init_alloc (void)
{
- eassert (mp_bits_per_limb == GMP_NUMB_BITS);
- integer_width = 1 << 16;
- mp_set_memory_functions (xmalloc, xrealloc_for_gmp, xfree_for_gmp);
-
Vgc_elapsed = make_float (0.0);
gcs_done = 0;