We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 701c27b + 6758a31 commit 704a764Copy full SHA for 704a764
inf-clojure.el
@@ -568,8 +568,9 @@ See variable `inf-clojure-arglist-command'."
568
(defun inf-clojure-show-arglist (fn)
569
"Show the arglist for function FN in the mini-buffer."
570
(interactive (inf-clojure-symprompt "Arglist" (inf-clojure-fn-called-at-pt)))
571
- (if-let ((eldoc (inf-clojure-arglist fn)))
572
- (message "%s: %s" fn eldoc)))
+ (let ((eldoc (inf-clojure-arglist fn)))
+ (when eldoc
573
+ (message "%s: %s" fn eldoc))))
574
575
(defun inf-clojure-show-ns-vars (ns)
576
"Send a query to the inferior Clojure for the public vars in NS.
0 commit comments