Skip to content

Commit 3b1c837

Browse files
committed
Kill some dead code
1 parent 7de3e99 commit 3b1c837

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

cider-interaction.el

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,22 +1785,6 @@ See command `cider-mode'."
17851785
(unless (cider-connected-p)
17861786
(cider-disable-on-existing-clojure-buffers)))
17871787

1788-
(defun cider-fetch-vars-form (ns)
1789-
"Construct a Clojure form to read vars inside for NS."
1790-
`(concat (if (find-ns (symbol ,ns))
1791-
(map name (concat (keys (ns-interns (symbol ,ns)))
1792-
(keys (ns-refers (symbol ,ns))))))
1793-
(if (not= "" ,ns) [".."])
1794-
(->> (all-ns)
1795-
(map (fn [n]
1796-
(re-find (re-pattern (str "^" (if (not= ,ns "")
1797-
(str ,ns "\\."))
1798-
"[^\\.]+"))
1799-
(str n))))
1800-
(filter identity)
1801-
(map (fn [n] (str n "/")))
1802-
(into (hash-set)))))
1803-
18041788
(defun cider-parent-ns (ns)
18051789
"Go up a level of NS.
18061790
For example \"foo.bar.tar\" -> \"foo.bar\"."

0 commit comments

Comments
 (0)