]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve purify-flag docstring
authorStefan Kangas <stefankangas@gmail.com>
Sun, 15 Dec 2024 18:14:04 +0000 (19:14 +0100)
committerEshel Yaron <me@eshelyaron.com>
Mon, 3 Feb 2025 11:06:43 +0000 (12:06 +0100)
* src/alloc.c (syms_of_alloc): Improve purify-flag docstring.

(cherry picked from commit f818744cd4b1dddece0a221b06e6e83740e06e2d)

src/alloc.c

index dfa1d68d1222a5cde40ac2dd0aa4f0c6bfcd08aa..40a59854a878df578f9ff52fba0f7b180c13f452 100644 (file)
@@ -7569,13 +7569,11 @@ If this portion is smaller than `gc-cons-threshold', this is ignored.  */);
 
   DEFVAR_LISP ("purify-flag", Vpurify_flag,
               doc: /* Non-nil means loading Lisp code in order to dump an executable.
-This used to mean that certain objects should be allocated in shared (pure)
-space.  It can also be set to a hash-table, in which case this table is used
-to do hash-consing of the objects allocated to pure space.
-The hash-consing still applies, but objects are not allocated in pure
-storage any more.
-This flag is still used in a few places not to decide where objects are
-allocated but to know if we're in the preload phase of Emacs's build.  */);
+This used to mean that certain objects should be allocated in shared
+(pure) space, but objects are not allocated in pure storage any more.
+This flag is still used in a few places, not to decide where objects are
+allocated, but to know if we're in the preload phase of Emacs's
+build.  */);
 
   DEFVAR_BOOL ("garbage-collection-messages", garbage_collection_messages,
               doc: /* Non-nil means display messages at start and end of garbage collection.  */);