Minor fix for unexec builds.
* src/emacs.c (main): Fix assertions and logic for pdump loading in builds that can both unexec and pdump.
This commit is contained in:
parent
0ceee95f85
commit
dbb1a8bc1a
1 changed files with 5 additions and 2 deletions
|
@ -897,10 +897,13 @@ main (int argc, char **argv)
|
|||
}
|
||||
else
|
||||
{
|
||||
eassert (!initialized);
|
||||
eassert (!temacs);
|
||||
#ifndef HAVE_UNEXEC
|
||||
eassert (!initialized);
|
||||
#endif
|
||||
#ifdef HAVE_PDUMPER
|
||||
attempt_load_pdump = true;
|
||||
if (!initialized)
|
||||
attempt_load_pdump = true;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue