summaryrefslogtreecommitdiff
path: root/.config/emacs/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to '.config/emacs/early-init.el')
-rw-r--r--.config/emacs/early-init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/early-init.el b/.config/emacs/early-init.el
index b74ba18..85f13b0 100644
--- a/.config/emacs/early-init.el
+++ b/.config/emacs/early-init.el
@@ -1,4 +1,4 @@
-;; -*- lexical-binding: t; -*-
+;;; early-init.el --- Emacs early init file -*- lexical-binding: t; -*-
(defconst 1-KiB 1024
"The number of bytes in 1 kibibyte")
@@ -55,7 +55,7 @@
(setq read-process-output-max
(let ((pipe-size-file "/proc/sys/fs/pipe-max-size"))
- (if (file-exists-p pipe-size-file)
+ (if (file-exists-p pipe-size-file)
(with-temp-buffer
(insert-file-contents pipe-size-file)
(number-at-point))