diff options
author | Pip Cet <pipcet@gmail.com> | 2021-05-16 15:44:26 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-16 15:44:26 +0200 |
commit | 9b6992a794c391c5d663b4a82b5acc9de611e2ac (patch) | |
tree | 2af6fe2df10e3a9fa29f8cb1e7a41f3f0de10cb6 /src/emacs.c | |
parent | bf8b8cc6c57e051e11306aa9c409dc4ed8c442bc (diff) | |
download | emacs-scratch/no-purespace-old.tar.gz |
Remove purespace from Emacsscratch/no-purespace-old
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 60a57a693ce..800f6b3b8f6 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -104,7 +104,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include "syntax.h" #include "sysselect.h" #include "systime.h" -#include "puresize.h" #include "getpagesize.h" #include "gnutls.h" @@ -1782,7 +1781,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem if (!initialized) { init_alloc_once (); +#ifdef HAVE_PDUMPER init_pdumper_once (); +#endif init_obarray_once (); init_eval_once (); init_charset_once (); @@ -2763,8 +2764,6 @@ You must run Emacs in batch mode in order to dump it. */) Lisp_Object symbol; ptrdiff_t count = SPECPDL_INDEX (); - check_pure_size (); - if (! noninteractive) error ("Dumping Emacs works only in batch mode"); |