Skip to content

Commit

Permalink
Merge pull request #1603 from SequentialDesign/SequentialDesign-next-…
Browse files Browse the repository at this point in the history
…highlight-mimic-isearch-patch-1

make isearch-next|prev-highlight mimic isearch movement exactly
  • Loading branch information
cxxxr authored Nov 13, 2024
2 parents bd3ea00 + e563b89 commit f93e750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext/isearch.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@
(end point))
(funcall search-fn end string)
(funcall search-previous-fn (move-point start end) string)
(when (point<= start point)
(when (point< end point)
(move-point point end)))
(dotimes (_ (abs n) point)
(unless (funcall search-fn point string)
Expand Down

0 comments on commit f93e750

Please sign in to comment.