Skip to content

Commit

Permalink
Fix consult--each-line (Fix #1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
minad committed Apr 20, 2024
1 parent bc11084 commit 8989c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consult.el
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ The line beginning/ending BEG/END is bound in BODY."
(declare (indent 2))
(cl-with-gensyms (max)
`(save-excursion
(let ((,beg (point-min)) (,max (point-max)) end)
(let ((,beg (point-min)) (,max (point-max)) ,end)
(while (< ,beg ,max)
(goto-char ,beg)
(setq ,end (pos-eol))
Expand Down

0 comments on commit 8989c7a

Please sign in to comment.