mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-14 15:46:56 -05:00
fix(lib): doom-file-read: (read . N) spec
Failed to read :by argument in '(read . ,N) form.
This commit is contained in:
@@ -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))
|
||||
|
Reference in New Issue
Block a user