aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLin Sun2022-10-22 00:00:06 +0000
committerEli Zaretskii2022-10-25 14:53:01 +0300
commit095dadf27781b5f7916db0b5d669d7ced8f76d7e (patch)
tree04d7c574fc18fbf1bf5a2f325a3746eb33bb9662 /src
parentbb95e597a9adcba0080cba85b2270fdf80696b3a (diff)
downloademacs-095dadf27781b5f7916db0b5d669d7ced8f76d7e.tar.gz
emacs-095dadf27781b5f7916db0b5d669d7ced8f76d7e.zip
lisp.h: Remove unnecessary preprocessor conditions
This removes the HAVE_PDUMPER || HAVE_UNEXEC condition of gflags.will_dump_, which gets in the way when Emacs is built without any dumping method. (Bug#58708)
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5f6721595c0..1eed323133a 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -643,10 +643,8 @@ extern bool initialized;
643extern struct gflags 643extern struct gflags
644{ 644{
645 /* True means this Emacs instance was born to dump. */ 645 /* True means this Emacs instance was born to dump. */
646#if defined HAVE_PDUMPER || defined HAVE_UNEXEC
647 bool will_dump_ : 1; 646 bool will_dump_ : 1;
648 bool will_bootstrap_ : 1; 647 bool will_bootstrap_ : 1;
649#endif
650#ifdef HAVE_PDUMPER 648#ifdef HAVE_PDUMPER
651 /* Set in an Emacs process that will likely dump with pdumper; all 649 /* Set in an Emacs process that will likely dump with pdumper; all
652 Emacs processes may dump with pdumper, however. */ 650 Emacs processes may dump with pdumper, however. */