diff options
| author | Paul Eggert | 2019-07-23 09:19:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-07-23 09:23:20 -0700 |
| commit | 8dd5b6ea56c38669bc98104ee2d6b31496624d28 (patch) | |
| tree | 3c0f5d0259478f97052fd21585cb24d5d105437c /src/alloc.c | |
| parent | 29a7d73d195761e8309a4fe23872888758436d1e (diff) | |
| download | emacs-8dd5b6ea56c38669bc98104ee2d6b31496624d28.tar.gz emacs-8dd5b6ea56c38669bc98104ee2d6b31496624d28.zip | |
Improve pdumper doc; say unexec is deprecated
Say that pdumping cannot redump unless -batch is used. Say that
the traditional unexec dumping method is by default not available,
and is deprecated. Don't call dump files "portable", as dump files
are not any more portable than the Emacs executables themselves.
Just call them "dump files". Similar, prefer "portable dumper"
(since the dumper code is portable) to "portable dumping" (since
the dump file is not). Be more systematic about calling them
"dump files" instead of "dumped images" or whatnot.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5d8003ffb5c..f256ff71b07 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4531,9 +4531,9 @@ mark_maybe_object (Lisp_Object obj) | |||
| 4531 | 4531 | ||
| 4532 | void *po = XPNTR (obj); | 4532 | void *po = XPNTR (obj); |
| 4533 | 4533 | ||
| 4534 | /* If the pointer is in the dumped image and the dump has a record | 4534 | /* If the pointer is in the dump image and the dump has a record |
| 4535 | of the object starting at the place where the pointer points, we | 4535 | of the object starting at the place where the pointer points, we |
| 4536 | definitely have an object. If the pointer is in the dumped image | 4536 | definitely have an object. If the pointer is in the dump image |
| 4537 | and the dump has no idea what the pointer is pointing at, we | 4537 | and the dump has no idea what the pointer is pointing at, we |
| 4538 | definitely _don't_ have an object. */ | 4538 | definitely _don't_ have an object. */ |
| 4539 | if (pdumper_object_p (po)) | 4539 | if (pdumper_object_p (po)) |