mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-16 15:56:52 -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)))
|
(buffer-substring-no-properties (point-min) (point-max)))
|
||||||
('read
|
('read
|
||||||
(condition-case _ (read (current-buffer)) (end-of-file)))
|
(condition-case _ (read (current-buffer)) (end-of-file)))
|
||||||
('(read . ,i)
|
(`(read . ,i)
|
||||||
(let (forms)
|
(let (forms)
|
||||||
(condition-case _
|
(condition-case _
|
||||||
(dotimes (_ i) (push (read (current-buffer)) forms))
|
(dotimes (_ i) (push (read (current-buffer)) forms))
|
||||||
|
Reference in New Issue
Block a user