1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; * lisp/emacs-lisp/igc.el (igc-collect): Doc fix.

This commit is contained in:
Eli Zaretskii 2025-11-29 19:57:36 +02:00
parent b1d360a77b
commit 00ad86045f

View file

@ -80,7 +80,11 @@ Should be either the symbol human-readable or nil.")
;;;###autoload
(defun igc-collect ()
"Perform a full GC."
"Perform a full GC.
This triggers an immediate garbage collection of the entire memory
used for Lisp objects, recycling any unreachable objects whose
memory can be freed and attempting to reduce the size of
the memory used for objects."
(interactive)
(let ((garbage-collection-messages t))
(igc--collect)))