diff options
author | Andy Wingo <wingo@pobox.com> | 2021-03-12 22:38:21 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2021-03-12 22:38:21 +0100 |
commit | db9725fd02d49effaa9e40413b507cfd1804377e (patch) | |
tree | 09f55929bdb9778c5327e80fc344358e4f458dd9 /libguile/guile.c | |
parent | 23042a1ef9ea5054feb0c4d33a36b10115e65e18 (diff) | |
download | guile-db9725fd02d49effaa9e40413b507cfd1804377e.tar.gz |
Don't force installation of GMP allocators in guile shell
* libguile/guile.c (main): Don't override initial setting of
scm_install_gmp_memory_functions. Thanks to Andrew Whatson for the
fix.
Diffstat (limited to 'libguile/guile.c')
-rw-r--r-- | libguile/guile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/guile.c b/libguile/guile.c index bafe5d66e..8283ef6fa 100644 --- a/libguile/guile.c +++ b/libguile/guile.c @@ -91,7 +91,6 @@ main (int argc, char **argv) if (should_install_locale () && setlocale (LC_ALL, "") == NULL) fprintf (stderr, "guile: warning: failed to install locale\n"); - scm_install_gmp_memory_functions = 1; scm_boot_guile (argc, argv, inner_main, 0); return 0; /* never reached */ } |