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)
This commit is contained in:
Lin Sun 2022-10-22 00:00:06 +00:00 committed by Eli Zaretskii
parent bb95e597a9
commit 095dadf277

View 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. */