File tree 2 files changed +2
-1
lines changed
Filter options
2 files changed +2
-1
lines changed
Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ # [ #164 ] ( https://github.com/clojure-emacs/inf-clojure/pull/164 ) : Fix for eldoc-mode on ClojureCLR
5
6
* [ #160 ] ( https://github.com/clojure-emacs/inf-clojure/pull/160 ) : Support [ Joker] ( https://joker-lang.org/ ) .
6
7
* [ #135 ] ( https://github.com/clojure-emacs/inf-clojure/pull/135 ) : Improve command sanitation code.
7
8
Original file line number Diff line number Diff line change @@ -900,7 +900,7 @@ If you are using REPL types, it will pickup the most appropriate
900
900
(clojure.core/meta
901
901
(clojure.core/resolve
902
902
(clojure.core/read-string \" %s\" ))))
903
- (catch Throwable t nil))"
903
+ (catch #?(:clj Throwable :cljr Exception) e nil))"
904
904
" Form to query inferior Clojure for a function's arglists."
905
905
:type 'string
906
906
:safe #'stringp
You can’t perform that action at this time.
0 commit comments