-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
;;; init-dir.el --- Init directory instead of just a single file -*- lexical-binding: t; -*- | ||
|
||
;; Copyright 2005-2023 Jared Finder | ||
;; Copyright 2005-2024 Jared Finder | ||
;; Author: Jared Finder <[email protected]> | ||
;; Created: Feb 22, 2005 | ||
;; Version: 0.2.1 | ||
|
@@ -64,8 +64,10 @@ | |
(defvar init-dir-enable-reduced-gc-pressure-during-load t | ||
"Set to non-nil if `init-dir-load' should reduce GC runs. | ||
When set, the garbage collector will be run after loading all | ||
files.") | ||
When set, `gc-cons-threshold' and `gc-cons-percentage' will be | ||
set to high numbers while loading before being restored. The | ||
Check warning on line 68 in init-dir.el GitHub Actions / test (27.1)
Check warning on line 68 in init-dir.el GitHub Actions / test (27.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (28.1)
Check failure on line 68 in init-dir.el GitHub Actions / test (28.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.1)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.3)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.4)
Check warning on line 68 in init-dir.el GitHub Actions / test (27.1)
Check warning on line 68 in init-dir.el GitHub Actions / test (27.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (28.1)
Check failure on line 68 in init-dir.el GitHub Actions / test (28.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.1)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.2)
Check failure on line 68 in init-dir.el GitHub Actions / test (29.3)
|
||
garbage collector will also be run after loading all files and | ||
added to the time benchmark visible from benchmark-init.") | ||
|
||
(defun init-dir--file-init-loadable-p (file) | ||
"Test if FILE should be loaded at Emacs initialization. | ||
|