aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniel Colascione2014-03-21 03:38:41 -0700
committerDaniel Colascione2014-03-21 03:38:41 -0700
commit50e4eb2d52ed43255d34a8ec8ca5cd0193752abe (patch)
tree3b58f697d9c57943130a1e24a3a760fff9d5f687 /src
parent28210c60f6a526bc196a36b01686c5a7ac33ca15 (diff)
downloademacs-50e4eb2d52ed43255d34a8ec8ca5cd0193752abe.tar.gz
emacs-50e4eb2d52ed43255d34a8ec8ca5cd0193752abe.zip
Move might_dump assignment earlier in initialization
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 3f0d3c43cc6..50efcbfb60c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -734,6 +734,10 @@ main (int argc, char **argv)
734 xputenv ("G_SLICE=always-malloc"); 734 xputenv ("G_SLICE=always-malloc");
735#endif 735#endif
736 736
737#ifndef CANNOT_DUMP
738 might_dump = !initialized;
739#endif
740
737#ifdef GNU_LINUX 741#ifdef GNU_LINUX
738 if (!initialized) 742 if (!initialized)
739 { 743 {
@@ -1634,10 +1638,6 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
1634#endif 1638#endif
1635#endif 1639#endif
1636 1640
1637#ifndef CANNOT_DUMP
1638 might_dump = !initialized;
1639#endif
1640
1641 initialized = 1; 1641 initialized = 1;
1642 1642
1643#ifdef LOCALTIME_CACHE 1643#ifdef LOCALTIME_CACHE