summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/emacs.c b/src/emacs.c
index a72f1810d8a..1868961090d 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -129,8 +129,6 @@ Lisp_Object Vlibrary_cache;
on subsequent starts. */
bool initialized;
-bool generating_ldefs_boot;
-
#ifndef CANNOT_DUMP
/* Set to true if this instance of Emacs might dump. */
# ifndef DOUG_LEA_MALLOC
@@ -686,10 +684,7 @@ main (int argc, char **argv)
stack_bottom = &stack_bottom_variable;
dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0
- || strcmp (argv[argc - 1], "bootstrap") == 0 );
-
- generating_ldefs_boot = !!getenv ("GENERATE_LDEFS_BOOT");
-
+ || strcmp (argv[argc - 1], "bootstrap") == 0);
/* True if address randomization interferes with memory allocation. */
# ifdef __PPC64__