File tree 2 files changed +6
-1
lines changed 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 30
30
### Bugs fixed
31
31
32
32
- [ #3600 ] ( https://github.com/clojure-emacs/cider/pull/3600 ) : Fix scittle jack-in when using ` cider-jack-in-clj ` .
33
+ - [ #3663 ] ( https://github.com/clojure-emacs/cider/issues/3663 ) : Fix ` cider-interactive-eval-override ` invocation.
33
34
34
35
## 1.13.1 (2024-02-01)
35
36
Original file line number Diff line number Diff line change @@ -1229,7 +1229,11 @@ arguments and only proceed with evaluation if it returns nil."
1229
1229
(delete-overlay ov))))
1230
1230
(unless (and cider-interactive-eval-override
1231
1231
(functionp cider-interactive-eval-override)
1232
- (funcall cider-interactive-eval-override form callback bounds))
1232
+ (condition-case _
1233
+ (funcall cider-interactive-eval-override form callback bounds additional-params)
1234
+ (wrong-number-of-arguments
1235
+ ; ; fallback for backward compatibility
1236
+ (funcall cider-interactive-eval-override form callback bounds))))
1233
1237
(cider-map-repls :auto
1234
1238
(lambda (connection )
1235
1239
(cider--prep-interactive-eval form connection)
You can’t perform that action at this time.
0 commit comments