diff options
| author | Stefan Kangas | 2024-12-15 19:14:04 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2024-12-15 19:33:59 +0100 |
| commit | f818744cd4b1dddece0a221b06e6e83740e06e2d (patch) | |
| tree | 942f1e4da3034a12a6b6c5b3f5112b7962c6bd6c /src/alloc.c | |
| parent | d05ee2ba80b0961015eb543536266208afb57dff (diff) | |
| download | emacs-f818744cd4b1dddece0a221b06e6e83740e06e2d.tar.gz emacs-f818744cd4b1dddece0a221b06e6e83740e06e2d.zip | |
Improve purify-flag docstring
* src/alloc.c (syms_of_alloc): Improve purify-flag docstring.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/alloc.c b/src/alloc.c index 82d1a3a9891..8718121141b 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -7637,13 +7637,11 @@ If this portion is smaller than `gc-cons-threshold', this is ignored. */); | |||
| 7637 | 7637 | ||
| 7638 | DEFVAR_LISP ("purify-flag", Vpurify_flag, | 7638 | DEFVAR_LISP ("purify-flag", Vpurify_flag, |
| 7639 | doc: /* Non-nil means loading Lisp code in order to dump an executable. | 7639 | doc: /* Non-nil means loading Lisp code in order to dump an executable. |
| 7640 | This used to mean that certain objects should be allocated in shared (pure) | 7640 | This used to mean that certain objects should be allocated in shared |
| 7641 | space. It can also be set to a hash-table, in which case this table is used | 7641 | (pure) space, but objects are not allocated in pure storage any more. |
| 7642 | to do hash-consing of the objects allocated to pure space. | 7642 | This flag is still used in a few places, not to decide where objects are |
| 7643 | The hash-consing still applies, but objects are not allocated in pure | 7643 | allocated, but to know if we're in the preload phase of Emacs's |
| 7644 | storage any more. | 7644 | build. */); |
| 7645 | This flag is still used in a few places not to decide where objects are | ||
| 7646 | allocated but to know if we're in the preload phase of Emacs's build. */); | ||
| 7647 | 7645 | ||
| 7648 | DEFVAR_BOOL ("garbage-collection-messages", garbage_collection_messages, | 7646 | DEFVAR_BOOL ("garbage-collection-messages", garbage_collection_messages, |
| 7649 | doc: /* Non-nil means display messages at start and end of garbage collection. */); | 7647 | doc: /* Non-nil means display messages at start and end of garbage collection. */); |