]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp.h: Remove unnecessary preprocessor conditions
authorLin Sun <sunlin7@hotmail.com>
Sat, 22 Oct 2022 00:00:06 +0000 (00:00 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 25 Oct 2022 11:53:01 +0000 (14:53 +0300)
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)

src/lisp.h

index 5f6721595c0f397f68c8f00f3013e72a93771931..1eed323133a0e7006f634c8861842c9cb5434443 100644 (file)
@@ -643,10 +643,8 @@ extern bool initialized;
 extern struct gflags
 {
   /* True means this Emacs instance was born to dump.  */
-#if defined HAVE_PDUMPER || defined HAVE_UNEXEC
   bool will_dump_ : 1;
   bool will_bootstrap_ : 1;
-#endif
 #ifdef HAVE_PDUMPER
   /* Set in an Emacs process that will likely dump with pdumper; all
      Emacs processes may dump with pdumper, however.  */