emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 3684c79672 2/8: doc/Makefile: Disable GC during exp


From: ELPA Syncer
Subject: [elpa] externals/org 3684c79672 2/8: doc/Makefile: Disable GC during export
Date: Thu, 16 Jun 2022 02:02:35 -0400 (EDT)

branch: externals/org
commit 3684c7967247ebed953ff72c09f077e9e06b584f
Author: Ihor Radchenko <yantar92@gmail.com>
Commit: Ihor Radchenko <yantar92@gmail.com>

    doc/Makefile: Disable GC during export
    
    * doc/Makefile (org.texi):
    (orgguide.texi): Set `gc-cons-threshold` to `most-positive=fixnum' and
    thus disable garbage collection while exporting manuals.  This reduces
    the manual generation time.
---
 doc/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/Makefile b/doc/Makefile
index cb6d72bdc0..5911bd08a2 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -31,12 +31,14 @@ org.texi:   org-manual.org
        $(BATCH)                                      \
          --eval '(add-to-list `load-path "../lisp")' \
          --eval '(load "../mk/org-fixup.el")'        \
+         --eval '(setq gc-cons-threshold most-positive-fixnum)' \
          --eval '(org-make-manual)'
 
 orgguide.texi: org-guide.org
        $(BATCH)                                      \
          --eval '(add-to-list `load-path "../lisp")' \
          --eval '(load "../mk/org-fixup.el")'        \
+         --eval '(setq gc-cons-threshold most-positive-fixnum)' \
          --eval '(org-make-guide)'
 
 org-version.inc:       org.texi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]