File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -680,7 +680,7 @@ If you are using REPL types, it will pickup the most approapriate
680
680
(define-obsolete-variable-alias 'inf-clojure-arglist-command 'inf-clojure-arglists-form " 2.0.0" )
681
681
682
682
(defcustom inf-clojure-arglists-form-lumo
683
- " (lumo.repl/get-arglists \" %s\" )"
683
+ " (pr-str ( lumo.repl/get-arglists \" %s\" ) )"
684
684
" Lumo form to query inferior Clojure for a function's arglists."
685
685
:type 'string
686
686
:package-version '(inf-clojure . " 2.0.0" ))
@@ -958,7 +958,8 @@ See variable `inf-clojure-arglists-form'."
958
958
(arglists-data (read arglists-result)))
959
959
(cond
960
960
((null arglists-data) nil )
961
- ((listp arglists-data) (string-trim (inf-clojure--single-linify arglists-result))))))
961
+ ((stringp arglists-data) arglists-data)
962
+ ((listp arglists-data) arglists-result))))
962
963
963
964
(defun inf-clojure-show-arglists (prompt-for-symbol )
964
965
" Show the arglists for function FN in the mini-buffer.
You can’t perform that action at this time.
0 commit comments