diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-08 12:11:48 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-08 12:11:48 +0200 |
commit | b2e1ba52ecd4f08d1bd62c85f73ea97ecc892706 (patch) | |
tree | 94c0809960effd976a3820d1452a4a831249a3bc /.config/emacs/early-init.el | |
parent | f8f78ed924e86b44df73f72f235ae0fdc49b7cf9 (diff) |
emacs: Formatting
Diffstat (limited to '.config/emacs/early-init.el')
-rw-r--r-- | .config/emacs/early-init.el | 4 |
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)) |