From 1e89556fa8974df69773904ef3f128b145aa8d55 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 Sep 2025 11:52:29 -0400 Subject: [PATCH] fix(lib): doom-file-read: (read . N) spec Failed to read :by argument in '(read . ,N) form. --- lisp/lib/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/lib/files.el b/lisp/lib/files.el index efae2745e..c6121d47f 100644 --- a/lisp/lib/files.el +++ b/lisp/lib/files.el @@ -288,7 +288,7 @@ If BEG and/or END are integers, only that region will be read from FILE." (buffer-substring-no-properties (point-min) (point-max))) ('read (condition-case _ (read (current-buffer)) (end-of-file))) - ('(read . ,i) + (`(read . ,i) (let (forms) (condition-case _ (dotimes (_ i) (push (read (current-buffer)) forms))