branch: elpa/inf-clojure
commit 431c06844bfb1c99b49f494aa73df3e699b48f30
Author: Andrea Richiardi <a.richiardi.w...@gmail.com>
Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>

    Fix three "variable is void" bugs
---
 inf-clojure.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/inf-clojure.el b/inf-clojure.el
index c496ae1..b499192 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -719,7 +719,7 @@ If you are using REPL types, it will pickup the most 
approapriate
 `inf-clojure-ns-vars-form` variant."
   (pcase (inf-clojure--set-repl-type (inf-clojure-proc))
     (`lumo inf-clojure-ns-vars-form-lumo)
-    (`planck inf-clojure-ns-vars-form-lumo)
+    (`planck inf-clojure-ns-vars-form-planck)
     (_ inf-clojure-ns-vars-form)))
 
 (define-obsolete-variable-alias 'inf-clojure-ns-vars-command 
'inf-clojure-ns-vars-form "2.0.0")
@@ -742,7 +742,7 @@ If you are using REPL types, it will pickup the most 
approapriate
 `inf-clojure-set-ns-form` variant."
   (pcase (inf-clojure--set-repl-type (inf-clojure-proc))
     (`planck inf-clojure-set-ns-form-planck)
-    (_ inf-clojure-ns-form)))
+    (_ inf-clojure-set-ns-form)))
 
 (define-obsolete-variable-alias 'inf-clojure-set-ns-command 
'inf-clojure-set-ns-form "2.0.0")
 
@@ -809,7 +809,7 @@ If you are using REPL types, it will pickup the most 
approapriate
 If you are using REPL types, it will pickup the most approapriate
 `inf-clojure-macroexpand-1-form` variant."
   (pcase (inf-clojure--set-repl-type (inf-clojure-proc))
-    (`planck inf-clojure-macroexpand-1-planck)
+    (`planck inf-clojure-macroexpand-1-form-planck)
     (_ inf-clojure-macroexpand-1-form)))
 
 (define-obsolete-variable-alias 'inf-clojure-macroexpand-1-command 
'inf-clojure-macroexpand-1-form "2.0.0")

Reply via email to