aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-09-26 04:20:26 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:04 -0400
commitbc203f9e4311ddb2c6ea12c14ae2dc2f463591c1 (patch)
treefdb456d8c7e513b8e44b2ddb01604750cbe740fc /src/emacs.c
parent792b3d23233b65eebe5ceeacc635175372de5fca (diff)
disable GC_all_interior_pointers
* src/emacs.c (main): Don't enable `GC_all_interior_pointers'. * src/eval.c (specpdl_base): New variable. (init_eval_once, grow_specpdl): Save the dummy entry preceding the specpdl in `specpdl_base'.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 319f5efef4..4777044215 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -718,8 +718,6 @@ static int main2 (void *, int, char **);
int
main (int argc, char **argv)
{
- /* Override Guile's libgc configuration. */
- xputenv ("GC_ALL_INTERIOR_POINTERS=1");
scm_boot_guile (argc, argv, main2, NULL);
}