Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
### Bugs fixed

- [#3600](https://github.com/clojure-emacs/cider/pull/3600): Fix scittle jack-in when using `cider-jack-in-clj`.
- [#3663](https://github.com/clojure-emacs/cider/issues/3663): Fix `cider-interactive-eval-override` invocation.

## 1.13.1 (2024-02-01)

Expand Down
6 changes: 5 additions & 1 deletion cider-eval.el
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,11 @@ arguments and only proceed with evaluation if it returns nil."
(delete-overlay ov))))
(unless (and cider-interactive-eval-override
(functionp cider-interactive-eval-override)
(funcall cider-interactive-eval-override form callback bounds))
(condition-case _
(funcall cider-interactive-eval-override form callback bounds additional-params)
(wrong-number-of-arguments
;; fallback for backward compatibility
(funcall cider-interactive-eval-override form callback bounds))))
(cider-map-repls :auto
(lambda (connection)
(cider--prep-interactive-eval form connection)
Expand Down