branch: elpa/inf-clojure commit a705085da287a1a16e94cd3747f9ef4df1c3b82e Author: Andrea Richiardi <a.richiardi.w...@gmail.com> Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>
Add nil parameter to lumo completions' atom The atom creation requires a parameter. It rightfully complains in lumo 1.6.X. --- inf-clojure.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inf-clojure.el b/inf-clojure.el index 082d22e..9947e27 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -726,7 +726,7 @@ If you are using REPL types, it will pickup the most approapriate (define-obsolete-variable-alias 'inf-clojure-completion-command 'inf-clojure-completion-form "2.0.0") (defcustom inf-clojure-completion-form-lumo - "(let [ret (atom)] + "(let [ret (atom nil)] (lumo.repl/get-completions \"%s\" (fn [res] (reset! ret (map str res)))) @ret)"